| /developtools/integration_verification/tools/rom_ram_analyzer/lite_small/src/ |
| D | misc.py | 127 def add_prefix(content: str, prefix: str) -> str: 128 if content and (not content.startswith(prefix)): 129 return prefix+content 182 prefix = _config.get("default_prefix").get("shared_library") 190 return add_prefix(output_name, prefix) 199 prefix = _config.get("default_prefix").get("static_library") 204 return add_prefix(output_name, prefix) 215 prefix = _config.get("default_prefix").get("static_library") 218 prefix = _config.get("default_prefix").get("shared_library") 221 prefix = str() [all …]
|
| /developtools/integration_verification/cases/smoke/basic/screenshot32/resource/ |
| D | capturescreentest.py | 159 def connect_wifi(prefix, pic): argument 161 data = get_coordinate("{}\\{}_{}".format(args.save_path, prefix, pic), "testapold") 209 def crop_picture(prefix, pic, crop_range): argument 210 pic_path = "{}\\{}_{}".format(args.save_path, prefix, pic) 211 save_path = "{}\\{}_{}".format(args.save_path, prefix, pic) 217 def cmp_picture(prefix, pic, num=1): argument 222 img2_path = "{}\\{}_{}".format(args.save_path, prefix, pic) 229 print("no such file: {}_{}".format(prefix, pic)) 234 prefix = args.device_num 235 enter_shell_cmd("snapshot_display -f /data/screen_test/{}_{}".format(prefix, image)) [all …]
|
| /developtools/integration_verification/tools/startup_guard/config_parser_mgr/param/ |
| D | system_parameter_parser.py | 22 def __init__(self, prefix, parameter = None): argument 23 self["prefix"] = prefix 51 def __init__(self, prefix, parameter=None): argument 52 ParameterParser.__init__(self, prefix, parameter) 68 def __init__(self, prefix, parameter=None): argument 69 ParameterParser.__init__(self, prefix, parameter)
|
| /developtools/profiler/device/plugins/ftrace_plugin/src/ |
| D | string_utils.cpp | 25 bool StringUtils::StartsWith(const std::string& str, const std::string& prefix) in StartsWith() argument 27 if (str.size() < prefix.size()) { in StartsWith() 30 return str.compare(0, prefix.size(), prefix) == 0; in StartsWith()
|
| /developtools/ace_ets2bundle/compiler/src/fast_build/system_api/ |
| D | rollup-plugin-system-api.ts | 109 prefix: string; property 115 if (config.prefix === `@${moduleType}`) { 125 if (config.prefix === `@${moduleType}`) {
|
| /developtools/integration_verification/tools/deps_guard/elf_file_mgr/ |
| D | elf_file.py | 25 def __init__(self, file, prefix): argument 35 self["path"] = file[len(prefix):]
|
| D | elf_file_mgr.py | 27 def __init__(self, file, prefix): argument 28 super(ElfFileWithDepsInfo, self).__init__(file, prefix)
|
| /developtools/smartperf_host/trace_streamer/ |
| D | lcov_operator.sh | 34 genhtml -o out/test/html test.info --prefix $PREFIX
|
| /developtools/profiler/host/smartperf/trace_streamer/ |
| D | lcov_operator.sh | 34 genhtml -o out/test/html test.info --prefix $PREFIX
|
| /developtools/hiperf/include/ |
| D | perf_event_record.h | 154 virtual void DumpLog(const std::string &prefix) const; 179 void DumpLog(const std::string &prefix) const override; 195 void DumpLog(const std::string &prefix) const override; 227 void DumpLog(const std::string &prefix) const override; 245 void DumpLog(const std::string &prefix) const override;
|
| D | utilities.h | 247 std::string ToHex(const T &source, int size = sizeof(T), bool prefix = false) 250 if (prefix) {
|
| /developtools/profiler/device/plugins/native_daemon/src/ |
| D | utilities.cpp | 172 const std::string prefix {"0x"}; in IsHexDigits() local 174 if (prefix.compare(0, prefix.size(), effectStr.substr(0, prefix.size())) == 0) { in IsHexDigits() 175 effectStr = effectStr.substr(prefix.size(), effectStr.size() - prefix.size()); in IsHexDigits()
|
| D | stack_preprocess.cpp | 488 const std::string prefix = "FilePage:"; in SetHookData() local 491 mmapEvent->set_type(prefix + tagName); in SetHookData() 501 const std::string prefix = "Anonymous:"; in SetHookData() local 503 tagEvent->set_tag(prefix + tagName); in SetHookData() 593 const std::string prefix = "Anonymous:"; in WriteFrames() local 599 (uint64_t)rawStack->stackConext->addr, (prefix + tagName).c_str()); in WriteFrames()
|
| /developtools/profiler/build/ |
| D | lcov.sh | 40 genhtml --demangle-cpp -o $TEST_OUT/html $TEST_OUT/profiler_ut_coverage.info --prefix $PREFIX
|
| /developtools/profiler/device/plugins/ftrace_plugin/include/ |
| D | string_utils.h | 24 static bool StartsWith(const std::string& str, const std::string& prefix);
|
| D | flow_controller.h | 58 void GenerateRawDataFileNames(const std::string& prefix);
|
| /developtools/integration_verification/tools/rom_ram_analyzer/lite_small/pkgs/ |
| D | basic_tool.py | 45 def translate_str_unit(x: str, dest: str, prefix: str = "~") -> float: 60 x = float(x.lstrip(prefix).rstrip(src_unit))
|
| /developtools/hiperf/src/ |
| D | perf_event_record.cpp | 157 void PerfEventRecord::DumpLog(const std::string &prefix) const in DumpLog() 159 HLOGV("%s: record %s: type %u, misc %u, size %zu\n", prefix.c_str(), GetName().c_str(), in DumpLog() 163 void PerfRecordSample::DumpLog(const std::string &prefix) const in DumpLog() 166 prefix.c_str(), data_.sample_id, header.size, data_.pid, data_.tid, data_.nr, in DumpLog() 463 void PerfRecordMmap::DumpLog(const std::string &prefix) const in DumpLog() 465 HLOGV("%s: MMAP: size %d pid %u tid %u dso '%s' (0x%llx-0x%llx)@0x%llx", prefix.c_str(), in DumpLog() 545 void PerfRecordMmap2::DumpLog(const std::string &prefix) const in DumpLog() 547 HLOGV("%s: MMAP2: size %d pid %u tid %u dso '%s' (0x%llx-0x%llx)@0x%llx", prefix.c_str(), in DumpLog() 620 void PerfRecordComm::DumpLog(const std::string &prefix) const in DumpLog()
|
| D | utilities.cpp | 247 const std::string prefix {"0x"}; in IsHexDigits() local 249 if (prefix.compare(0, prefix.size(), effectStr.substr(0, prefix.size())) == 0) { in IsHexDigits() 250 effectStr = effectStr.substr(prefix.size(), effectStr.size() - prefix.size()); in IsHexDigits()
|
| /developtools/profiler/hiebpf/include/ |
| D | hhlog.h | 129 const char prefix[] {" [" #level "] %s %d %s: %s"}; \ 132 prefix, __FILE__, __LINE__, __FUNCTION__, format); \
|
| D | commandline_flags.h | 161 int prefix {0}; in GetFlagName() 169 ++prefix; in GetFlagName() 172 argLen -= prefix; in GetFlagName() 176 if (prefix == shortFlagLen and argLen == shortFlagLen) { in GetFlagName() 177 flagName = std::string(argStr + prefix, argLen); in GetFlagName() 184 if (prefix == longPrefix and argLen > shortFlagLen) { in GetFlagName()
|
| /developtools/profiler/device/services/ipc/src/ |
| D | proto_encoder_plugin_generator.cpp | 31 std::string prefix = ""; in GetPrefix() local 36 prefix += fileName.c_str()[i]; in GetPrefix() 38 return prefix; in GetPrefix()
|
| /developtools/profiler/host/smartperf/trace_streamer/src/protos/types/plugins/ftrace_data/default/ |
| D | trace_plugin_config.proto | 27 string raw_data_prefix = 13; // raw data file prefix for debug
|
| /developtools/profiler/protos/types/plugins/ftrace_data/default/ |
| D | trace_plugin_config.proto | 27 string raw_data_prefix = 13; // raw data file prefix for debug
|
| /developtools/smartperf_host/trace_streamer/src/protos/types/plugins/ftrace_data/default/ |
| D | trace_plugin_config.proto | 27 string raw_data_prefix = 13; // raw data file prefix for debug
|