Searched refs:strlen (Results 1 – 14 of 14) sorted by relevance
3 size_t strlen(const char *s) in strlen() function96 strcpy(dest + strlen(dest), src); in strcat()
18 int len = strlen(buf); in fprintf()
228 len = strlen(s); in vsprintf()
102 unsigned long size = strlen(src); in strnlen_user()119 strcpy(dest + strlen(dest), src); in strcat()
215 len = strlen(s); in __do_vsprintf()
23 ret = write(fd[1], msg, strlen(msg)); in shell_pipe_test()
78 char command_origin[strlen(input_buffer)]; in main_loop()168 count = strlen(buf); in shell_readline()179 count = strlen(buf); in shell_readline()
45 int cwd_len = strlen(shell_current_path); in get_target_filepath()48 *result_path_len = cwd_len + strlen(filename); in get_target_filepath()65 *result_path_len = strlen(filename); in get_target_filepath()124 int current_dir_len = strlen(shell_current_path); in shell_cmd_cd()155 int dest_len = strlen(argv[1]); in shell_cmd_cd()
9 ``size_t strlen(const char *s)`` : 返回字符串长度
16 size_t strlen(const char *s);
13 static inline int strlen(const char *s) in strlen() function
69 entry->symbol_length = strlen(str) + 1; // +1的原因是.asciz指令会在字符串末尾自动添加结束符\0 in read_symbol()
169 int namelen = sizeof(strlen(irq_name) + 1); in irq_register()
447 #### `int strlen(const char *s)`