/third_party/f2fs-tools/tools/ |
D | f2fs_io_parse.c | 169 ptr = strtok(NULL, " "); in handle_tp_pid() 172 ptr = strtok(NULL, " "); in handle_tp_pid() 183 ptr = strtok(NULL, " "); in handle_tp_ios() 186 ptr = strtok(NULL, " "); in handle_tp_ios() 187 ptr = strtok(NULL, " "); in handle_tp_ios() 190 ptr = strtok(NULL, " "); in handle_tp_ios() 193 ptr = strtok(NULL, " "); in handle_tp_ios() 195 ptr = strtok(NULL, " "); in handle_tp_ios() 198 ptr = strtok(NULL, " "); in handle_tp_ios() 217 ptr = strtok(line, ":"); in do_parse() [all …]
|
/third_party/toybox/toys/other/ |
D | lsmod.c | 26 char *name = strtok(toybuf, " "), *size = strtok(NULL, " "), in lsmod_main() 27 *refcnt = strtok(NULL, " "), *users = strtok(NULL, " "); in lsmod_main()
|
/third_party/python/Lib/ctypes/test/ |
D | test_funcptr.py | 104 strtok = lib.my_strtok 105 strtok.restype = c_char_p 121 self.assertEqual(strtok(b, b"\n"), b"a") 122 self.assertEqual(strtok(None, b"\n"), b"b") 123 self.assertEqual(strtok(None, b"\n"), b"c") 124 self.assertEqual(strtok(None, b"\n"), None)
|
/third_party/ltp/testcases/kernel/fs/doio/ |
D | string_to_tokens.c | 84 char *strtok(); in string_to_tokens() 93 if ((arg_array[num_toks] = strtok(arg_string, separator)) == NULL) { in string_to_tokens() 98 if ((arg_array[num_toks] = strtok(NULL, separator)) == NULL) in string_to_tokens()
|
/third_party/flutter/skia/third_party/externals/sdl/visualtest/src/ |
D | sut_configparser.c | 82 token_ptr = strtok(line, ", "); in SDLVisualTest_ParseSUTConfig() 94 token_ptr = strtok(NULL, ", "); in SDLVisualTest_ParseSUTConfig() 119 token_ptr = strtok(NULL, "]"); in SDLVisualTest_ParseSUTConfig() 159 token_ptr = strtok(NULL, ", "); in SDLVisualTest_ParseSUTConfig() 181 token_ptr = strtok(NULL, ","); in SDLVisualTest_ParseSUTConfig()
|
D | action_configparser.c | 295 token_ptr = strtok(line, " "); in SDLVisualTest_ParseActionConfig() 308 token_ptr = strtok(NULL, " "); in SDLVisualTest_ParseActionConfig() 334 token_ptr = strtok(NULL, " "); in SDLVisualTest_ParseActionConfig() 354 token_ptr = strtok(NULL, ""); in SDLVisualTest_ParseActionConfig()
|
/third_party/jerryscript/jerry-ext/debugger/ |
D | debugger-serial.c | 337 char *token = strtok (tmp_config, ","); in jerryx_debugger_serial_create() 339 …serial_config.baud_rate = (token = strtok (NULL, ",")) ? (uint32_t) strtoul (token, NULL, 10) : 11… in jerryx_debugger_serial_create() 340 serial_config.data_bits = (token = strtok (NULL, ",")) ? (uint32_t) strtoul (token, NULL, 10) : 8; in jerryx_debugger_serial_create() 341 serial_config.parity = (token = strtok (NULL, ",")) ? token[0] : 'N'; in jerryx_debugger_serial_create() 342 serial_config.stop_bits = (token = strtok (NULL, ",")) ? (uint32_t) strtoul (token, NULL, 10) : 1; in jerryx_debugger_serial_create()
|
/third_party/grpc/src/core/ext/filters/workarounds/ |
D | workaround_cronet_compression_filter.cc | 147 char* head = strtok(user_agent_str, " "); in parse_user_agent() 159 head = strtok(nullptr, " "); in parse_user_agent() 162 major_version_str = strtok(major_version_str, "."); in parse_user_agent() 163 minor_version_str = strtok(nullptr, "."); in parse_user_agent()
|
/third_party/musl/libc-test/src/functional/ |
D | string.c | 70 TEST(s, strtok(b, " "), b, "%p != %p"); in main() 73 TEST(s, strtok(NULL, ";"), b+4, "%p != %p"); in main() 76 TEST(s, strtok(NULL, " ;"), b+11, "%p != %p"); in main() 79 TEST(s, strtok(NULL, " ;"), b+16, "%p != %p"); in main()
|
/third_party/ltp/testcases/kernel/fs/mongo/ |
D | mongo_slinks.c | 40 old_path = strtok(line_buffer, "\t "); in main() 41 new_path = strtok(NULL, "\t\n "); in main()
|
/third_party/ltp/testcases/network/nfsv4/locks/ |
D | netsync.c | 184 p = strtok(conf, ":"); in getConfiguration() 187 p = strtok(NULL, ":"); in getConfiguration() 190 p = strtok(NULL, ":"); in getConfiguration()
|
/third_party/googletest/googletest/src/hwext/ |
D | gtest-utils.cc | 68 char *tokenptr = strtok(src, delim.c_str()); in SplitString() 73 tokenptr = strtok(NULL, delim.c_str()); in SplitString()
|
/third_party/e2fsprogs/lib/e2p/ |
D | encoding.c | 89 char *f = strtok(param, "-"); in e2p_str2encoding_flags() 115 f = strtok(NULL, "-"); in e2p_str2encoding_flags()
|
/third_party/mesa3d/src/gallium/frontends/xvmc/tests/ |
D | xvmc_bench.c | 103 char *token = strtok(argv[++i], ","); in ParseArgs() 117 token = strtok(NULL, ","); in ParseArgs() 122 char *token = strtok(argv[++i], ","); in ParseArgs() 136 token = strtok(NULL, ","); in ParseArgs()
|
/third_party/curl/src/ |
D | tool_dirhie.c | 125 tempdir = strtok(outdup, PATH_DELIMITERS); in create_dir_hierarchy() 129 tempdir2 = strtok(NULL, PATH_DELIMITERS); in create_dir_hierarchy()
|
/third_party/iptables/iptables/ |
D | iptables-restore.c | 211 table = strtok(buffer+1, " \t\n"); in ip46tables_restore_main() 251 chain = strtok(buffer+1, " \t\n"); in ip46tables_restore_main() 282 policy = strtok(NULL, " \t\n"); in ip46tables_restore_main() 294 ctrs = strtok(NULL, " \t\n"); in ip46tables_restore_main()
|
D | xtables-restore.c | 114 table = strtok(buffer+1, " \t\n"); in xtables_restore_parse_line() 151 chain = strtok(buffer+1, " \t\n"); in xtables_restore_parse_line() 163 policy = strtok(NULL, " \t\n"); in xtables_restore_parse_line() 173 ctrs = strtok(NULL, " \t\n"); in xtables_restore_parse_line()
|
/third_party/flutter/skia/third_party/externals/harfbuzz/util/ |
D | options-subset.cc | 101 char *s = strtok((char *) arg, ", "); in parse_drop_tables() 118 s = strtok(nullptr, ", "); in parse_drop_tables()
|
/third_party/ltp/pan/ |
D | splitstr.c | 108 cur_tok = strtok(arg_string, separator); in splitstr() 111 cur_tok = strtok(NULL, separator); in splitstr()
|
/third_party/musl/libc-test/src/functionalext/locale/ |
D | setlocale.c | 165 char *token = strtok(locale, flag); in setlocale_0600() 168 token = strtok(NULL, flag); in setlocale_0600()
|
/third_party/musl/libc-test/src/functionalext/supplement/locale/ |
D | setlocale_sup.c | 158 char *token = strtok(locale, flag); in setlocale_0600() 161 token = strtok(NULL, flag); in setlocale_0600()
|
/third_party/ltp/testcases/lib/ |
D | tst_kvcmp.c | 77 ver = strtok(kver, " "); in compare_kver() 79 while ((exver = strtok(NULL, " "))) { in compare_kver()
|
/third_party/ltp/lib/ |
D | self_exec.c | 87 child_dir = strtok(args, ","); in maybe_run_child() 97 tok = strtok(NULL, ","); in maybe_run_child()
|
/third_party/skia/third_party/externals/libwebp/examples/ |
D | example_util.c | 109 for (cur = strtok((char*)args->argv_data_.bytes, sep); in ExUtilInitCommandLineArguments() 111 cur = strtok(NULL, sep)) { in ExUtilInitCommandLineArguments()
|
/third_party/flutter/skia/third_party/externals/libwebp/examples/ |
D | example_util.c | 109 for (cur = strtok((char*)args->argv_data_.bytes, sep); in ExUtilInitCommandLineArguments() 111 cur = strtok(NULL, sep)) { in ExUtilInitCommandLineArguments()
|