Searched refs:strlen (Results 1 – 17 of 17) 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()
230 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()
78 char command_origin[strlen(input_buffer)]; in main_loop()177 count = strlen(buf); in shell_readline()191 count = strlen(buf); in shell_readline()
56 int cwd_len = strlen(shell_current_path); in get_target_filepath()59 *result_path_len = cwd_len + strlen(filename); in get_target_filepath()76 *result_path_len = strlen(filename); in get_target_filepath()135 int current_dir_len = strlen(shell_current_path); in shell_cmd_cd()166 int dest_len = strlen(argv[1]); in shell_cmd_cd()
69 n = strlen(msg); in shell_pipe_test()
32 return write(sockfd, response, strlen(response)); in send_response()136 if (strlen(url) == 0) in handle_request()143 if (url[strlen(url) - 1] == '/') in handle_request()
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
52 int namelen = sizeof(strlen(irq_name) + 1); in c_irq_install()
69 entry->symbol_length = strlen(str) + 1; // +1的原因是.asciz指令会在字符串末尾自动添加结束符\0 in read_symbol()
205 int namelen = sizeof(strlen(irq_name) + 1); in irq_register()
170 send(client_sockfd, sendbuf, strlen(sendbuf), 0); in tcp_client()
447 #### `int strlen(const char *s)`