Searched refs:strip (Results 1 – 25 of 56) sorted by relevance
123
/system/bt/gd/dumpsys/bundler/ |
D | extract_files_and_call.py | 41 return [x.strip() for x in f.readlines() if x.strip()]
|
/system/extras/perf2cfg/tests/ |
D | test_parse.py | 24 self.assertEqual(got.strip(), 'flags') 28 self.assertEqual(got.strip(), 'flags "catch_block" "critical"') 32 self.assertEqual(got.strip(), 'name "void hcf()"')
|
/system/extras/simpleperf/scripts/test/ |
D | binary_cache_builder_test.py | 31 strip = ToolFinder.find_tool_path('strip', arch='arm') 32 self.assertIsNotNone(strip) 46 self.run_cmd([strip, '--strip-all', '-o', source_file, origin_file]) 51 self.run_cmd([strip, '--strip-debug', '-o', source_file, origin_file])
|
D | tools_test.py | 115 expected_files.append(items[0].strip()) 118 expected_functions.append(line.strip())
|
/system/sepolicy/tests/ |
D | fc_sort.py | 62 path = split[0].strip() 63 context = split[-1].strip() 66 fileType = split[1].strip() 78 node = CreateNode(line.strip())
|
D | check_prop_prefix.py | 56 tokens = line.strip()
|
/system/tools/aidl/build/ |
D | aidl_to_jni.py | 82 stripped_line = line.strip() 83 output_file.write(convert_method(line.strip()))
|
/system/core/fastboot/fuzzy_fastboot/example/ |
D | checksum_parser.py | 29 infos = [s.strip() for s in info.splitlines()]
|
/system/vold/bench/ |
D | benchgen.py | 60 name = name.strip('<>"') 68 path = path.strip(">") 98 args.append(arg.strip()) 103 args.append(arg.strip())
|
/system/bt/tools/scripts/ |
D | dump_metrics_ascii.py | 131 stdout = stdout.strip() 132 stderr = stderr.strip()
|
D | yapf_checker.py | 65 logging.error(result.stdout.decode('utf-8').strip())
|
D | btsnooz.py | 159 base64_string += line.strip()
|
/system/extras/tests/bootloader/ |
D | bootctl.py | 61 return self._exec("get-suffix " + str(slot))[1].strip()
|
/system/extras/perf2cfg/perf2cfg/ |
D | parse.py | 131 return parts[1].strip('"')
|
/system/core/libcutils/ |
D | fs_config.cpp | 236 static size_t strip(const char* path, size_t len, const char suffix[]) { in strip() function 251 len = strip(target_out_path, len, "/"); in fs_config_open() 252 len = strip(target_out_path, len, "/system"); in fs_config_open()
|
/system/chre/build/arch/ |
D | hexagon.mk | 90 TARGET_CFLAGS += -m$(strip $(HEXAGON_ARCH))
|
/system/core/init/ |
D | compare-bootcharts.py | 123 proc_name = segs[1].strip('()')
|
/system/extras/simpleperf/scripts/ |
D | report.py | 151 if not line.strip('| \t'): 158 line = line.strip('| \t') 169 line = line.strip('|- \t')
|
D | simpleperf_utils.py | 403 log_fatal('unsupported architecture: %s' % output.strip()) 471 items = bytes_to_str(line).strip().split('=') 638 for line in stdoutdata.strip().split('\n'): 639 line = line.strip() 646 cur_function_name = line.strip() 927 section_name = result.group(1).strip()
|
/system/bt/gd/cert/ |
D | async_subprocess_logger.py | 90 print("{}{}".format(loggableTag, line.strip()))
|
/system/extras/brillo_config/ |
D | Android.mk | 92 ifeq ($(strip $(HAS_BUILD_NUMBER)),true)
|
/system/libvintf/analyze_matrix/ |
D | hals_for_release.py | 122 return proc.stdout.decode().strip() 170 instances = set(map(str.strip, instances)) - {""}
|
/system/apex/tools/ |
D | apex_compression_test.py | 187 avbtool_cmd, True).split(': ')[1].strip() 244 return run_host_command(cmd, True).strip()
|
/system/sepolicy/tools/ |
D | post_process_mac_perms | 48 if err and err.strip():
|
/system/chre/build/nanoapp/ |
D | app.mk | 30 NANOAPP_VERSION := $(strip $(NANOAPP_VERSION))
|
123