Lines Matching full:coredump

23  * Need to prefix coredump strings to make it easier to parse
31 * @defgroup coredump_apis Coredump APIs
33 * @brief Coredump APIs
46 * Check if there is a stored coredump from backend.
49 * - 1 if there is a stored coredump, 0 if none.
57 * - coredump raw size from backend, 0 if none.
79 * Verify that the stored coredump is valid.
83 * - 0 if not valid or no stored coredump.
90 * Erase the stored coredump.
100 * Copy the raw stored coredump.
104 * - 0 if stored coredump is not found
111 * Invalidate the stored coredump. This is faster than
127 /** Coredump copy command (@ref COREDUMP_CMD_COPY_STORED_DUMP) argument definition */
166 /* Coredump header */
182 /* Coredump Reason given */
234 /* Signal to backend of the start of coredump. */
237 /* Signal to backend of the end of coredump. */
250 void coredump(unsigned int reason, const struct arch_esf *esf,
260 static inline void coredump(unsigned int reason, const struct arch_esf *esf, in coredump() function
297 * @fn void coredump(unsigned int reason, const struct arch_esf *esf, struct k_thread *thread);
298 * @brief Perform coredump.
300 * Normally, this is called inside z_fatal_error() to generate coredump
302 * whenever a coredump is desired.
319 * @brief Output the buffer via coredump
321 * This outputs the buffer of byte array to the coredump backend.
322 * For example, this can be called to output the coredump section
325 * @param buf Buffer to be send to coredump output
331 * @brief Perform query on coredump subsystem.
333 * Query the coredump subsystem for information, for example, if there is
343 * @brief Perform command on coredump subsystem.
345 * Perform command on coredump subsystem, for example, output the stored
346 * coredump via logging.