Searched refs:sep (Results 1 – 9 of 9) sorted by relevance
/system/hardware/interfaces/suspend/1.0/default/ |
D | WakeLockEntryList.cpp | 37 const char* sep = " | "; in operator <<() local 42 out << sep in operator <<() 43 << std::left << std::setw(30) << entry.name << sep in operator <<() 45 << ((kernelWakelock) ? notApplicable : std::to_string(entry.pid)) << sep in operator <<() 46 << std::left << std::setw(6) << ((kernelWakelock) ? "Kernel" : "Native") << sep in operator <<() 47 << std::left << std::setw(8) << ((entry.isActive) ? "Active" : "Inactive") << sep in operator <<() 48 << std::right << std::setw(12) << entry.activeCount << sep in operator <<() 49 << std::right << std::setw(12) << std::to_string(entry.totalTime) + "ms" << sep in operator <<() 50 << std::right << std::setw(12) << std::to_string(entry.maxTime) + "ms" << sep in operator <<() 52 << ((kernelWakelock) ? std::to_string(entry.eventCount) : notApplicable) << sep in operator <<() [all …]
|
/system/tools/aidl/tests/java/src/android/aidl/tests/ |
D | ExtensionTests.java | 54 private NonVintfExtendableParcelable sep; field in ExtensionTests 72 sep = new NonVintfExtendableParcelable(); in setUp() 122 sep.ext.setParcelable(vp); in testStableParcelableHolderCanContainVintfParcelable() 123 assertThat(sep.ext.getParcelable(VintfParcelable.class), is(vp)); in testStableParcelableHolderCanContainVintfParcelable() 128 sep.ext.setParcelable(sp); in testStableParcelableHolderCanContainNonVintfParcelable() 129 assertThat(sep.ext.getParcelable(NonVintfParcelable.class), is(sp)); in testStableParcelableHolderCanContainNonVintfParcelable() 134 sep.ext.setParcelable(up); in testStableParcelableHolderCanContainUnstableParcelable() 135 assertThat(sep.ext.getParcelable(UnstableParcelable.class), is(up)); in testStableParcelableHolderCanContainUnstableParcelable()
|
/system/core/property_service/libpropertyinfoparser/ |
D | property_info_parser.cpp | 117 const char* sep = strchr(remaining_name, '.'); in GetPropertyInfoIndexes() local 131 if (sep == nullptr) { in GetPropertyInfoIndexes() 135 const uint32_t substr_size = sep - remaining_name; in GetPropertyInfoIndexes() 142 remaining_name = sep + 1; in GetPropertyInfoIndexes()
|
/system/extras/simpleperf/scripts/ |
D | simpleperf_utils.py | 169 sdk_path = os.path.join(home, cls.DEFAULT_SDK_PATH[platform].replace('/', os.sep)) 245 path_in_ndk = path_in_ndk.replace('/', os.sep) 247 path_in_sdk = path_in_sdk.replace('/', os.sep) 452 path = self.binary_cache_dir / dso_path_in_record_file[1:].replace('/', os.sep) 774 abstract_path = abstract_path.replace('/', os.sep)
|
D | binary_cache_builder.py | 60 device_path = device_path.replace('/', os.sep)
|
D | annotate.py | 396 to_path = os.path.join(dest_dir, from_path.replace(':\\', os.sep))
|
/system/extras/simpleperf/scripts/test/ |
D | tools_test.py | 377 return os.path.join(TestHelper.testdata_dir, path.replace('/', os.sep))
|
/system/extras/simpleperf/ |
D | cmd_stat_impl.h | 296 std::string GetRateComment(const CounterSummary& s, char sep);
|
D | cmd_stat.cpp | 279 std::string CounterSummaries::GetRateComment(const CounterSummary& s, char sep) { in GetRateComment() argument 301 return android::base::StringPrintf("%f%%%c%s", miss_rate * 100, sep, rate_desc.c_str()); in GetRateComment()
|