Home
last modified time | relevance | path

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

/system/iorap/src/common/
Dmacros.h47 #define IORAP_PP_MAP_SEP(FN, sep, ...) IORAP_PP_MAP_IMPL(IORAP_PP_NARG(__VA_ARGS__), FN, sep, __VA_… argument
48 #define IORAP_PP_MAP_IMPL(N, FN, sep, ...) IORAP_PP_CONCAT(IORAP_PP_MAP_IMPL_, N)(FN, sep, __VA_ARG… argument
49 #define IORAP_PP_MAP_IMPL_1(FN, sep, a1) FN(a1) argument
50 #define IORAP_PP_MAP_IMPL_2(FN, sep, a1, a2) FN(a1) sep() FN(a2) argument
51 #define IORAP_PP_MAP_IMPL_3(FN, sep, a1, a2, a3) FN(a1) sep() FN(a2) sep() FN(a3) argument
52 #define IORAP_PP_MAP_IMPL_4(FN, sep, a1, a2, a3, a4) FN(a1) sep() FN(a2) sep() FN(a3) sep() FN(a4) argument
/system/hardware/interfaces/suspend/1.0/default/
DWakeLockEntryList.cpp32 const char* sep = " | "; in operator <<() local
37 out << sep in operator <<()
38 << std::left << std::setw(30) << entry.name << sep in operator <<()
40 << ((kernelWakelock) ? notApplicable : std::to_string(entry.pid)) << sep in operator <<()
41 << std::left << std::setw(6) << ((kernelWakelock) ? "Kernel" : "Native") << sep in operator <<()
42 << std::left << std::setw(8) << ((entry.isActive) ? "Active" : "Inactive") << sep in operator <<()
43 << std::right << std::setw(12) << entry.activeCount << sep in operator <<()
44 << std::right << std::setw(12) << std::to_string(entry.totalTime) + "ms" << sep in operator <<()
45 << std::right << std::setw(12) << std::to_string(entry.maxTime) + "ms" << sep in operator <<()
47 << ((kernelWakelock) ? std::to_string(entry.eventCount) : notApplicable) << sep in operator <<()
[all …]
/system/tools/aidl/tests/java_app/src/android/aidl/tests/
DExtensionTests.java48 private NonVintfExtendableParcelable sep; field in ExtensionTests
59 sep = new NonVintfExtendableParcelable(); in setUp()
86 assertThat(sep.ext.setParcelable(vp), is(true)); in testStableParcelableHolderCanContainVintfParcelable()
87 assertThat(sep.ext.getParcelable(VintfParcelable.class), is(vp)); in testStableParcelableHolderCanContainVintfParcelable()
92 assertThat(sep.ext.setParcelable(sp), is(true)); in testStableParcelableHolderCanContainNonVintfParcelable()
93 assertThat(sep.ext.getParcelable(NonVintfParcelable.class), is(sp)); in testStableParcelableHolderCanContainNonVintfParcelable()
98 assertThat(sep.ext.setParcelable(up), is(true)); in testStableParcelableHolderCanContainUnstableParcelable()
99 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/
Dbinary_cache_builder.py120 target_file = target_file.replace('/', os.sep)
158 binary_cache_file = binary[1:].replace('/', os.sep)
Dutils.py198 path_in_ndk = path_in_ndk.replace('/', os.sep)
214 default_ndk_path = os.path.join(home, DEFAULT_NDK_PATH[platform].replace('/', os.sep))
660 abstract_path = abstract_path.replace('/', os.sep)
Dannotate.py406 to_path = os.path.join(dest_dir, from_path.replace(':\\', os.sep))
Dtest.py116 return os.path.join(self.testdata_dir, testdata_name.replace('/', os.sep))
1333 return os.path.join(TEST_HELPER.testdata_dir, path.replace('/', os.sep))
/system/security/keystore/
Dblob.cpp733 auto sep = filename.find('_'); in filename2UidAlias() local
734 if (sep == std::string::npos) return result; in filename2UidAlias()
736 std::stringstream s(filename.substr(0, sep)); in filename2UidAlias()
740 alias = decodeKeyName(filename.substr(sep + 1)); in filename2UidAlias()
/system/bt/bta/av/
Dbta_av_main.cc1500 const tBTA_AV_SEP& sep = p_scb->seps[j]; in bta_debug_av_dump() local
1501 if (sep.av_handle == 0) { in bta_debug_av_dump()
1505 dprintf(fd, " SEP AVDTP handle: %d\n", sep.av_handle); in bta_debug_av_dump()
1506 dprintf(fd, " Local SEP type: %d\n", sep.tsep); in bta_debug_av_dump()
1507 dprintf(fd, " Codec: %s\n", A2DP_CodecName(sep.codec_info)); in bta_debug_av_dump()
Dbta_av_aact.cc729 av_open.sep = AVDT_TSEP_SNK; in bta_av_role_res()
731 av_open.sep = AVDT_TSEP_SRC; in bta_av_role_res()
1281 open.sep = AVDT_TSEP_SNK; in bta_av_str_opened()
1284 open.sep = AVDT_TSEP_SRC; in bta_av_str_opened()
1680 open.sep = AVDT_TSEP_SNK; in bta_av_open_failed()
1682 open.sep = AVDT_TSEP_SRC; in bta_av_open_failed()
2492 data.open.sep = AVDT_TSEP_SNK; in bta_av_str_closed()
2494 data.open.sep = AVDT_TSEP_SRC; in bta_av_str_closed()
/system/bt/bta/include/
Dbta_av_api.h186 uint8_t sep; /* sep type of peer device */ member
/system/extras/simpleperf/
Dcmd_stat.cpp268 std::string CounterSummaries::GetRateComment(const CounterSummary& s, char sep) { in GetRateComment() argument
290 return android::base::StringPrintf("%f%%%c%s", miss_rate * 100, sep, rate_desc.c_str()); in GetRateComment()
Dcmd_stat_impl.h317 std::string GetRateComment(const CounterSummary& s, char sep);
/system/libufdt/utils/src/
Dmkdtboimg.py856 filepath = args.dtbdir + os.sep + dt_arg['filename']
/system/bt/btif/src/
Dbtif_av.cc1552 CHECK(peer_.PeerSep() == p_bta_data->open.sep); in ProcessEvent()
1703 CHECK(peer_.PeerSep() == p_bta_data->open.sep); in ProcessEvent()