Searched refs:strip (Results 1 – 25 of 59) sorted by relevance
123
/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/unwinding/libunwindstack/tools/ |
D | strip.py | 33 def strip(path): function 71 strip(path) 73 strip(path)
|
/system/sepolicy/tests/ |
D | fc_sort.py | 72 path = split[0].strip() 73 context = split[-1].strip() 76 file_type = split[1].strip() 116 node = FileContextsNode.create(line.strip())
|
D | check_prop_prefix.py | 56 tokens = line.strip()
|
/system/extras/simpleperf/scripts/test/ |
D | binary_cache_builder_test.py | 32 strip = ToolFinder.find_tool_path('llvm-strip', ndk_path=TestHelper.ndk_path, arch='arm') 33 self.assertIsNotNone(strip) 47 self.run_cmd([strip, '--strip-all', '-o', source_file, origin_file]) 52 self.run_cmd([strip, '--strip-debug', '-o', source_file, origin_file])
|
D | tools_test.py | 121 expected_files.append(items[0].strip()) 124 expected_functions.append(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/sepolicy/ |
D | Android.mk | 94 $(strip $(foreach type, $(1), $(foreach file, $(addsuffix /$(type), $(2)), $(sort $(wildcard $(file… 128 ifneq (,$(strip $(security_class_extension_files))) 129 …$(error Only platform SELinux policy may define classes and permissions: $(strip $(security_class_… 135 ifneq (,$(strip $(policy_files))) 140 ifneq (,$(strip $(policy_files))) 148 ifneq (,$(strip $(policy_files))) 153 ifneq (,$(strip $(policy_files)))
|
/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/tools/aidl/scripts/ |
D | vis_aidl_ver_errors.py | 46 print("UNRECOGNIZED LINE", i.strip())
|
/system/extras/perf2cfg/perf2cfg/ |
D | parse.py | 131 return parts[1].strip('"')
|
/system/extras/tests/bootloader/ |
D | bootctl.py | 61 return self._exec("get-suffix " + str(slot))[1].strip()
|
/system/security/fsverity/ |
D | fsverity_manifest_generator.py | 34 out = subprocess.check_output(cmd, universal_newlines=True).strip()
|
/system/sepolicy/tools/ |
D | fuzzer_bindings_check.py | 37 line = line.strip()
|
D | post_process_mac_perms | 48 if err and err.strip():
|
/system/core/libcutils/ |
D | fs_config.cpp | 244 static size_t strip(const char* path, size_t len, const char suffix[]) { in strip() function 259 len = strip(target_out_path, len, "/"); in fs_config_open() 260 len = strip(target_out_path, len, "/system"); in fs_config_open()
|
/system/extras/simpleperf/scripts/ |
D | report.py | 152 if not line.strip('| \t'): 159 line = line.strip('| \t') 170 line = line.strip('|- \t')
|
D | app_profiler.py | 139 file_set = set(output.strip().split()) 146 line = bytes_to_str(line).strip() 313 return line[pos + len('versionCode:'):].strip() 357 if uid == current_user.strip():
|
D | simpleperf_utils.py | 348 return stdoutdata.strip() if result else None 365 log_fatal('unsupported architecture: %s' % output.strip()) 436 items = bytes_to_str(line).strip().split('=') 656 lines = output.strip().splitlines() 668 function_name = lines[i].strip() 929 items = line.strip().split() 1022 section_name = result.group(1).strip()
|
/system/core/init/ |
D | compare-bootcharts.py | 123 proc_name = segs[1].strip('()')
|
/system/chre/build/arch/ |
D | hexagon.mk | 100 TARGET_CFLAGS += -m$(strip $(HEXAGON_ARCH))
|
/system/chre/tools/ |
D | todo_checker.py | 145 return bug_id_line.split(':')[1].strip()
|
/system/apex/tools/ |
D | apex_compression_test.py | 196 avbtool_cmd, True).split(': ')[1].strip() 254 return run_and_check_output(cmd, True).strip()
|
/system/extras/perf_tools/bats/ |
D | lcan.py | 107 moduleName = moduleName.strip() 152 keyword = keyword.strip() 343 timeString = timeString.strip() 560 line = line.strip()
|
123