Home
last modified time | relevance | path

Searched refs:split (Results 1 – 25 of 33) sorted by relevance

12

/system/extras/memcpy-perf/
Dgraph_memcpy.py25 line_split = line.split(",")
26 size.append(float(line_split[0].split(":")[1]))
27 perf.append(float(line_split[1].split(":")[1].split("G")[0]))
/system/core/fastboot/
Dengine.cpp95 double split = now(); in cb_default() local
96 fprintf(stderr,"OKAY [%7.3fs]\n", (split - a->start)); in cb_default()
97 a->start = split; in cb_default()
210 double split = now(); in cb_check() local
212 cur_product, a->prod, (split - a->start)); in cb_check()
213 a->start = split; in cb_check()
222 double split = now(); in cb_check() local
223 fprintf(stderr,"OKAY [%7.3fs]\n", (split - a->start)); in cb_check()
224 a->start = split; in cb_check()
/system/core/init/
Dcompare-bootcharts.py86 blocks = f.read().split('\n\n')
88 lines = b.split('\n')
115 segs = line.split(' ')
Dperfboot.py249 tokens = l.split(' ')
/system/connectivity/shill/test-scripts/
Ddebug24 curr_tagset = set(taglist.split("+"))
25 tagset_to_remove = set(sys.argv[1].lstrip("-").split("+"))
Drouting.py96 headers = routelist[0].split()
102 route = routeline.split()
/system/core/liblog/
Dpmsg_reader.c336 char *split = NULL; in __android_log_pmsg_file_read() local
351 if (split) { in __android_log_pmsg_file_read()
354 split = cp; in __android_log_pmsg_file_read()
357 if (*cp || !split) { in __android_log_pmsg_file_read()
368 split = strchr(prefix, ':'); in __android_log_pmsg_file_read()
369 if (split) { in __android_log_pmsg_file_read()
372 split = strchr(prefix, '/'); in __android_log_pmsg_file_read()
373 if (!split) { in __android_log_pmsg_file_read()
376 offset = split - prefix; in __android_log_pmsg_file_read()
383 strncmp(&msg[offset + sizeof(prio)], split + 1, prefix_len - offset)) { in __android_log_pmsg_file_read()
/system/bt/vendor_libs/test_vendor_lib/scripts/
Dtest_channel.py183 self._test_channel.send_command('CLEAR_EVENT_DELAY', args.split())
194 args.split()]
207 self._test_channel.send_command('SET_EVENT_DELAY', args.split())
/system/extras/tests/net_test/
Dnet_test.py86 version = os.uname()[2].split("-")[0]
89 version = tuple(int(i) for i in version.split("."))
237 address = [s for s in address.strip().split(" ") if s]
250 route = [s for s in route.strip().split(" ") if s]
259 route = [s for s in route.strip().split("\t") if s]
Dcstruct.py85 _fieldnames = _fieldnames.split(" ")
Diproute.py505 lladdr = lladdr.split(":")
Dmultinetwork_base.py487 if include_multicast or not int(ether.dst.split(":")[0], 16) & 0x1:
/system/media/camera/docs/
Dmetadata_helpers.py142 name_list = name.split(".")
708 return "".join([s[0:1].upper() + s[1:] for s in what.split('.')])
866 javatext = "\n".join(line_filter(i) for i in javatext.split("\n")) + "\n"
941 ndktext = "\n".join(line_filter(i) for i in ndktext.split("\n")) + "\n"
965 text_lines = text.split('\n')
1271 for words in text.split(" "):
1274 if len(words.split(char)) >= CAP_LETTER_MIN:
1292 split_by_wbr_list = wbr_filter(navigable_string).split("<wbr>")
Dmetadata_validate.py65 name = entry['entry'].split(".")[-1] # "a.b.c" => "c"
Dmetadata_model.py1331 return self.name.split(".")
/system/core/adb/
Dtest_device.py298 elements = out.split()
402 shlex.split('echo foo; echo bar >&2; exit 17'))
411 shlex.split('-x echo foo; echo bar >&2; exit 17'))
432 self.device.adb_cmd + shlex.split('shell echo $$; sleep 60'),
437 proc_query = shlex.split('ps {0} | grep {0}'.format(remote_pid))
477 shlex.split("sh -c 'echo hello; echo world'"))[0]
482 shlex.split(r'echo hello\;echo world'))[0].splitlines()
486 result = self.device.shell(shlex.split("'true && echo t'"))[0].strip()
489 shlex.split("sh -c 'true && echo t'"))[0].strip()
493 result = self.device.shell(shlex.split('FOO=a BAR=b echo t'))[0].strip()
[all …]
DSYNC.TXT51 The remote file name is split into two parts separated by the last
75 received is split up into chunks. The sync response id is "DATA" and length is
/system/extras/tests/workloads/
Datrace-uncompress.py16 parts = out.split('\nTRACE:', 1)
Dpowerave.py33 val = float(line.split(" ")[1]) # xxx take 2nd arg in line
/system/bt/osi/src/
Dconfig.c435 char *split = strchr(line_ptr, '='); in config_parse() local
436 if (!split) { in config_parse()
441 *split = '\0'; in config_parse()
442 config_set_string(config, section, trim(line_ptr), trim(split + 1)); in config_parse()
/system/vold/bench/
Dbenchgen.py67 fd, path = arg.split("<")
114 thread = int(fn.split(".")[-1])
/system/connectivity/shill/mobile_operator_db/
Dserviceproviders_converter.py405 _, fname = os.path.split(__file__)
564 lines = xml_data.split(u'\n')
577 lines_str_ascii = to_print_str_ascii.split('\n')
/system/extras/simpleperf/runtest/
Druntest.py215 report_options = test_item.attrib['option'].split()
582 for test in sys.argv[i].split(','):
/system/extras/tests/sdcard/
Dplot_sdcard.py164 (time, value) = line.split(None, 1)
/system/extras/verity/
DVerityVerifier.java220 String[] fields = tableStr.split(" "); in readHashTree()

12