Home
last modified time | relevance | path

Searched refs:sep (Results 1 – 9 of 9) sorted by relevance

/system/hardware/interfaces/suspend/1.0/default/
DWakeLockEntryList.cpp37 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/
DExtensionTests.java54 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/
Dproperty_info_parser.cpp117 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/
Dsimpleperf_utils.py169 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)
Dbinary_cache_builder.py60 device_path = device_path.replace('/', os.sep)
Dannotate.py396 to_path = os.path.join(dest_dir, from_path.replace(':\\', os.sep))
/system/extras/simpleperf/scripts/test/
Dtools_test.py377 return os.path.join(TestHelper.testdata_dir, path.replace('/', os.sep))
/system/extras/simpleperf/
Dcmd_stat_impl.h296 std::string GetRateComment(const CounterSummary& s, char sep);
Dcmd_stat.cpp279 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()