Searched refs:__cur_handler (Results 1 – 11 of 11) sorted by relevance
/picolibc-latest/newlib/libc/stdlib/ |
D | set_constraint_handler_s.c | 38 constraint_handler_t __cur_handler = abort_handler_s; variable 52 constraint_handler_t h = __cur_handler; in set_constraint_handler_s() 55 __cur_handler = abort_handler_s; // null restores to default handler in set_constraint_handler_s() 57 __cur_handler = handler; in set_constraint_handler_s()
|
D | local_s.h | 49 extern constraint_handler_t __cur_handler;
|
/picolibc-latest/newlib/libc/string/ |
D | memset_s.c | 74 if (__cur_handler != NULL) { in memset_s() 75 __cur_handler(msg, NULL, -1); in memset_s()
|
D | memmove_s.c | 81 if (__cur_handler != NULL) { in memmove_s() 82 __cur_handler(msg, NULL, -1); in memmove_s()
|
D | strerror_s.c | 80 if (__cur_handler != NULL) { in strerror_s() 81 __cur_handler(msg, NULL, -1); in strerror_s()
|
D | memcpy_s.c | 89 if (__cur_handler != NULL) { in memcpy_s() 90 __cur_handler(msg, NULL, -1); in memcpy_s()
|
D | strcpy_s.c | 120 if (__cur_handler != NULL) { in strcpy_s() 121 __cur_handler(msg, NULL, -1); in strcpy_s()
|
D | strcat_s.c | 137 if (__cur_handler != NULL) { in strcat_s() 138 __cur_handler(msg, NULL, -1); in strcat_s()
|
D | strncpy_s.c | 142 if (__cur_handler != NULL) { in strncpy_s() 143 __cur_handler(msg, NULL, -1); in strncpy_s()
|
D | strncat_s.c | 164 if (__cur_handler != NULL) { in strncat_s() 165 __cur_handler(msg, NULL, -1); in strncat_s()
|
/picolibc-latest/newlib/libc/tinystdio/ |
D | sprintf_s.c | 136 if (__cur_handler != NULL) { in sprintf_s() 137 __cur_handler(msg, NULL, -1); in sprintf_s()
|