/external/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 …]
|
/external/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()
|
/external/python/cpython2/Lib/ctypes/test/ |
D | test_funcptr.py | 104 strtok = lib.my_strtok 105 strtok.restype = c_char_p 121 self.assertEqual(strtok(b, "\n"), "a") 122 self.assertEqual(strtok(None, "\n"), "b") 123 self.assertEqual(strtok(None, "\n"), "c") 124 self.assertEqual(strtok(None, "\n"), None)
|
/external/linux-kselftest/tools/testing/selftests/cgroup/ |
D | cgroup_util.c | 177 for (fs = strtok(buf, delim); fs; fs = strtok(NULL, delim)) { in cg_find_unified_root() 178 mount = strtok(NULL, delim); in cg_find_unified_root() 179 type = strtok(NULL, delim); in cg_find_unified_root() 180 strtok(NULL, delim); in cg_find_unified_root() 181 strtok(NULL, delim); in cg_find_unified_root() 182 strtok(NULL, delim); in cg_find_unified_root() 346 for (line = strtok(buf, delim); line; line = strtok(NULL, delim)) in is_swap_enabled()
|
/external/python/cpython3/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)
|
/external/adhd/cras/src/tests/ |
D | cras_test_client.c | 723 chp = strtok(channel_layout_str, ","); in parse_channel_layout() 726 chp = strtok(NULL, ","); in parse_channel_layout() 1365 int dev_index = atoi(strtok(optarg, ":")); in main() 1366 int node_index = atoi(strtok(NULL, ":")); in main() 1367 int value = atoi(strtok(NULL, ":")) ; in main() 1376 int dev_index = atoi(strtok(optarg, ":")); in main() 1377 int node_index = atoi(strtok(NULL, ":")); in main() 1393 int dev_index = atoi(strtok(optarg, ":")); in main() 1394 int node_index = atoi(strtok(NULL, ":")); in main() 1417 s = strtok(optarg, ":"); in main() [all …]
|
/external/swiftshader/third_party/PowerVR_SDK/Tools/ |
D | PVRTPFXParser.cpp | 140 pReturn = strtok(pToken, szDelim); in ReadEOLToken() 144 pReturn = strtok (pToken, szDelim); // try linefeed in ReadEOLToken() 1118 pszSource = strtok(pszSource, DELIM_TOKENS NEWLINE_TOKENS); in ReadStringToken() 1125 pszSource = strtok(pszSource, NEWLINE_TOKENS); in ReadStringToken() 1168 char *str = strtok (m_psContext->ppszEffectFile[i]," "); in ParseHeader() 1285 char *str = strtok (pBlockCopy, NEWLINE_TOKENS DELIM_TOKENS); in ParseGenericSurface() 1311 char* pszRemaining = strtok(NULL, NEWLINE_TOKENS DELIM_TOKENS); in ParseGenericSurface() 1337 char* pszRemaining = strtok(NULL, NEWLINE_TOKENS DELIM_TOKENS); in ParseGenericSurface() 1370 pszRemaining = strtok(NULL, DELIM_TOKENS NEWLINE_TOKENS); in ParseGenericSurface() 1396 char* pszRemaining = strtok(NULL, NEWLINE_TOKENS DELIM_TOKENS); in ParseGenericSurface() [all …]
|
/external/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()
|
/external/ppp/pppd/plugins/radius/ |
D | radrealms.c | 83 p = strtok(buffer, "\t "); in lookup_realm() 100 if ((p = strtok(NULL, "\t ")) == NULL) { in lookup_realm() 110 if ((p = strtok(NULL, ":")) == NULL) { in lookup_realm() 118 if ((p = strtok(NULL, "\t ")) == NULL) { in lookup_realm()
|
D | config.c | 102 while ((p = strtok(p, ", \t")) != NULL) { in set_option_srv() 148 p = strtok(p, ", \t"); in set_option_auo() 159 p = strtok(NULL, ", \t"); in set_option_auo() 480 if ((h = strtok (buffer, " \t\n")) == NULL) /* first hostname */ in rc_find_server() 492 if ((s = strtok (NULL, " \t\n")) == NULL) /* and secret field */ in rc_find_server() 514 strtok (hostnm, "/"); in rc_find_server() 517 host2 = strtok (NULL, " "); in rc_find_server()
|
/external/grpc-grpc/src/core/ext/filters/workarounds/ |
D | workaround_cronet_compression_filter.cc | 145 char* head = strtok(user_agent_str, " "); in parse_user_agent() 157 head = strtok(nullptr, " "); in parse_user_agent() 160 major_version_str = strtok(major_version_str, "."); in parse_user_agent() 161 minor_version_str = strtok(nullptr, "."); in parse_user_agent()
|
/external/iptables/iptables/ |
D | iptables-restore.c | 303 table = strtok(buffer+1, " \t\n"); in iptables_restore_main() 339 chain = strtok(buffer+1, " \t\n"); in iptables_restore_main() 372 policy = strtok(NULL, " \t\n"); in iptables_restore_main() 386 ctrs = strtok(NULL, " \t\n"); in iptables_restore_main() 429 pcnt = strtok(buffer+1, ":"); in iptables_restore_main() 435 bcnt = strtok(NULL, "]"); in iptables_restore_main()
|
D | ip6tables-restore.c | 304 table = strtok(buffer+1, " \t\n"); in ip6tables_restore_main() 340 chain = strtok(buffer+1, " \t\n"); in ip6tables_restore_main() 373 policy = strtok(NULL, " \t\n"); in ip6tables_restore_main() 387 ctrs = strtok(NULL, " \t\n"); in ip6tables_restore_main() 430 pcnt = strtok(buffer+1, ":"); in ip6tables_restore_main() 436 bcnt = strtok(NULL, "]"); in ip6tables_restore_main()
|
D | xtables-restore.c | 255 table = strtok(buffer+1, " \t\n"); in xtables_restore_parse() 287 chain = strtok(buffer+1, " \t\n"); in xtables_restore_parse() 305 policy = strtok(NULL, " \t\n"); in xtables_restore_parse() 317 ctrs = strtok(NULL, " \t\n"); in xtables_restore_parse() 369 pcnt = strtok(buffer+1, ":"); in xtables_restore_parse() 375 bcnt = strtok(NULL, "]"); in xtables_restore_parse()
|
D | iptables-xml.c | 692 table = strtok(buffer + 1, " \t\n"); in iptables_xml_main() 709 chain = strtok(buffer + 1, " \t\n"); in iptables_xml_main() 720 policy = strtok(NULL, " \t\n"); in iptables_xml_main() 729 ctrs = strtok(NULL, " \t\n"); in iptables_xml_main() 758 pcnt = strtok(buffer + 1, ":"); in iptables_xml_main() 764 bcnt = strtok(NULL, "]"); in iptables_xml_main()
|
/external/toybox/toys/pending/ |
D | wget.c | 162 result = strtok(toybuf, "\r"); in wget_main() 163 strtok(result, " "); in wget_main() 164 rc = strtok(NULL, " "); in wget_main() 165 r_str = strtok(NULL, " "); in wget_main()
|
/external/selinux/policycoreutils/secon/ |
D | secon.c | 658 color.user_fg = strtok(color_str, " "); in disp_con() 661 color.user_bg = strtok(NULL, " "); in disp_con() 665 color.role_fg = strtok(NULL, " "); in disp_con() 668 color.role_bg = strtok(NULL, " "); in disp_con() 672 color.type_fg = strtok(NULL, " "); in disp_con() 675 color.type_bg = strtok(NULL, " "); in disp_con() 679 color.range_fg = strtok(NULL, " "); in disp_con() 682 color.range_bg = strtok(NULL, " "); in disp_con()
|
/external/u-boot/board/compulab/common/ |
D | eeprom.c | 234 char *tok = strtok(value, "."); in eeprom_field_update_bin_ver() 242 tok = strtok(NULL, ""); in eeprom_field_update_bin_ver() 347 char *tok1 = strtok(value, "/"); in eeprom_field_update_date() 348 char *tok2 = strtok(NULL, "/"); in eeprom_field_update_date() 349 char *tok3 = strtok(NULL, "/"); in eeprom_field_update_date()
|
/external/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()
|
/external/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()
|
/external/mesa3d/src/gallium/state_trackers/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()
|
/external/u-boot/fs/cramfs/ |
D | cramfs.c | 151 char *p = strtok (NULL, "/"); in cramfs_resolve() 189 strtok(link, "/")); in cramfs_resolve() 247 strtok (filename, "/")); in cramfs_load() 314 strtok (filename, "/")); in cramfs_ls()
|
/external/adhd/cras/src/server/ |
D | cras_hfp_slc.c | 225 strtok(tokens, "="); in event_reporting() 227 mode = strtok(NULL, ","); in event_reporting() 228 tmp = strtok(NULL, ","); in event_reporting() 229 tmp = strtok(NULL, ","); in event_reporting() 230 tmp = strtok(NULL, ","); in event_reporting()
|
/external/iproute2/misc/ |
D | lnstat.c | 296 for (tok = strtok(tmp, ","); in main() 298 tok = strtok(NULL, ",")) { in main() 316 for (tok = strtok(tmp, ","); in main() 318 tok = strtok(NULL, ",")) { in main()
|
/external/curl/src/ |
D | tool_dirhie.c | 125 tempdir = strtok(outdup, PATH_DELIMITERS); in create_dir_hierarchy() 128 tempdir2 = strtok(NULL, PATH_DELIMITERS); in create_dir_hierarchy()
|