Home
last modified time | relevance | path

Searched refs:str (Results 1 – 16 of 16) sorted by relevance

/SCP-firmware-master/arch/arm/armv8-a/src/
A Darch_libc.c50 char *strchr(const char *str, int c) in strchr() argument
53 if (*str == (char)c) in strchr()
54 return (char *)str; in strchr()
55 str++; in strchr()
56 } while (*str); in strchr()
61 size_t strlen(const char *str) in strlen() argument
63 char *tmp = (char *)str; in strlen()
145 char *tmp = str; in vsnprintf()
244 if (tmp == str) { in vsnprintf()
261 int snprintf(char *str, size_t size, const char *format, ...) in snprintf() argument
[all …]
/SCP-firmware-master/tools/
A Dproduct.py18 name: str
19 arguments: Tuple[str] = field(default_factory=tuple)
27 name: str
72 def __extra_arg__(cls, parameter: str) -> str: argument
82 name: str
A Dci_cmake.py92 def code_validation(checks: list) -> List[Tuple[str, int]]:
94 results: List[Tuple[str, int]] = []
102 def do_build(build_info: List[Build], output_path: str) -> \ argument
105 results: List[Tuple[str, int]] = []
132 def print_results(results: List[Tuple[str, int]]) -> Tuple[int, int]: argument
153 def check_errors(ignore_errors: bool, results: List[Tuple[str, int]]) -> bool: argument
158 def main(ignore_errors: bool, skip_container: bool, log_level: str, argument
159 output_path: str): argument
212 required=False, default="", type=str,
217 required=False, default="", type=str, action='store',
A Dcheck_style.py135 ignore_list = '--ignore ' + (','.join(map(str, IGNORED_TYPES)))
A Dgen_module_code.py113 type=str,
/SCP-firmware-master/product/synquacer/module/synquacer_system/include/
A Dsysdef_option.h35 char *str; member
/SCP-firmware-master/module/bootloader/src/
A Dmod_bootloader_boot.S33 str r4, [r3] /* Store vector table address in SCB->VTOR (if it exists) */
/SCP-firmware-master/framework/src/
A Dfwk_io.c318 const char *restrict str) in fwk_io_puts() argument
320 if (str == NULL) { in fwk_io_puts()
324 return fwk_io_write(stream, NULL, str, sizeof(char), strlen(str)); in fwk_io_puts()
A Dfwk_id.c126 fwk_id_format(fmt.str, sizeof(fmt.str), id); in __fwk_id_str()
/SCP-firmware-master/framework/include/internal/
A Dfwk_id.h118 char str[20]; /* Identifier string representation */ member
/SCP-firmware-master/framework/include/
A Dfwk_io.h408 const char *restrict str);
A Dfwk_id.h397 #define FWK_ID_STR(ID) (__fwk_id_str(ID).str)
639 char str[128]; /*!< Identifier string representation. */ member
/SCP-firmware-master/unit_test/unity_mocks/mocks/
A DMockfwk_io.h157 …ine fwk_io_puts_ExpectAndReturn(stream, str, cmock_retval) fwk_io_puts_CMockExpectAndReturn(__LINE… argument
158 …NITY_LINE_TYPE cmock_line, const struct fwk_io_stream* stream, const char* str, int cmock_to_retur…
159 typedef int (* CMOCK_fwk_io_puts_CALLBACK)(const struct fwk_io_stream* stream, const char* str, int…
163 …eturn(stream, stream_Depth, str, cmock_retval) fwk_io_puts_CMockExpectWithArrayAndReturn(__LINE__,… argument
164 …ck_line, const struct fwk_io_stream* stream, int stream_Depth, const char* str, int cmock_to_retur…
A DMockfwk_io.c1350 int fwk_io_puts(const struct fwk_io_stream* stream, const char* str) in fwk_io_puts() argument
1368 …int cmock_cb_ret = Mock.fwk_io_puts_CallbackFunctionPointer(stream, str, Mock.fwk_io_puts_Callback… in fwk_io_puts()
1387 …UNITY_TEST_ASSERT_EQUAL_STRING(cmock_call_instance->Expected_str, str, cmock_line, CMockStringMism… in fwk_io_puts()
1392 …cmock_call_instance->ReturnVal = Mock.fwk_io_puts_CallbackFunctionPointer(stream, str, Mock.fwk_io… in fwk_io_puts()
1398 …TANCE* cmock_call_instance, const struct fwk_io_stream* stream, int stream_Depth, const char* str);
1399 …STANCE* cmock_call_instance, const struct fwk_io_stream* stream, int stream_Depth, const char* str) in CMockExpectParameters_fwk_io_puts() argument
1404 cmock_call_instance->Expected_str = str; in CMockExpectParameters_fwk_io_puts()
1443 …NITY_LINE_TYPE cmock_line, const struct fwk_io_stream* stream, const char* str, int cmock_to_retur… in fwk_io_puts_CMockExpectAndReturn() argument
1453 CMockExpectParameters_fwk_io_puts(cmock_call_instance, stream, 1, str); in fwk_io_puts_CMockExpectAndReturn()
1471 …ck_line, const struct fwk_io_stream* stream, int stream_Depth, const char* str, int cmock_to_retur… in fwk_io_puts_CMockExpectWithArrayAndReturn() argument
[all …]
/SCP-firmware-master/debugger/src/cli/
A Dcli.c1342 unsigned char str[20] = { 0 }; in cli_val2str() local
1346 str[i++] = "0123456789ABCDEF"[value % base]; in cli_val2str()
1357 **outstr = str[i]; in cli_val2str()
1374 char *str = NULL; in cli_snprintf_arg() local
1421 str = va_arg(*args, char *); in cli_snprintf_arg()
1422 while (*str) { in cli_snprintf_arg()
1423 *s++ = *str++; in cli_snprintf_arg()
/SCP-firmware-master/product/synquacer/module/synquacer_system/src/
A Dgpio.c140 FWK_LOG_INFO("%s ", gpio_desc_p->str); in fw_gpio_init()

Completed in 26 milliseconds