Home
last modified time | relevance | path

Searched refs:components (Results 1 – 25 of 80) sorted by relevance

1234

/system/tools/hidl/host_utils/
DStringHelper.cpp139 std::vector<std::string> components; in ToCamelCase() local
140 Tokenize(in, &components); in ToCamelCase()
141 if (components.empty()) { in ToCamelCase()
146 components[0] = Lowercase(components[0]); in ToCamelCase()
147 for (size_t i = 1; i < components.size(); i++) { in ToCamelCase()
148 components[i] = Capitalize(components[i]); in ToCamelCase()
150 return JoinStrings(components, ""); in ToCamelCase()
154 std::vector<std::string> components; in ToPascalCase() local
155 Tokenize(in, &components); in ToPascalCase()
156 for (size_t i = 0; i < components.size(); i++) { in ToPascalCase()
[all …]
/system/tools/hidl/test/host_utils_test/
Dmain.cpp105 std::vector<std::string> components; in TEST_F() local
107 StringHelper::SplitString("", '.', &components); in TEST_F()
108 EXPECT_EQ(std::vector<std::string>({""}), components); in TEST_F()
109 StringHelper::SplitString("a.", '.', &components); in TEST_F()
110 EXPECT_EQ(std::vector<std::string>({"a", ""}), components); in TEST_F()
111 StringHelper::SplitString(".a", '.', &components); in TEST_F()
112 EXPECT_EQ(std::vector<std::string>({"", "a"}), components); in TEST_F()
113 StringHelper::SplitString("..", '.', &components); in TEST_F()
114 EXPECT_EQ(std::vector<std::string>({"", "", ""}), components); in TEST_F()
115 StringHelper::SplitString("asdf.asdf", '.', &components); in TEST_F()
[all …]
/system/tools/hidl/utils/
DFQName.cpp436 std::vector<std::string> components = getPackageAndVersionComponents(true /* sanitized */); in tokenName() local
441 components.insert(components.end(), nameComponents.begin(), nameComponents.end()); in tokenName()
444 return base::Join(components, "_"); in tokenName()
448 std::vector<std::string> components = getPackageAndVersionComponents(true /* sanitized */); in cppNamespace() local
449 return "::" + base::Join(components, "::"); in cppNamespace()
453 std::vector<std::string> components = base::Split(mName, "."); in cppLocalName() local
455 return base::Join(components, "::") in cppLocalName()
462 std::vector<std::string> components = base::Split(name(), "."); in cppName() local
464 out += base::Join(components, "::"); in cppName()
473 std::vector<std::string> components = getPackageAndVersionComponents(true /* sanitized */); in javaPackage() local
[all …]
/system/extras/boottime_tools/bootio/
Dbootio.cpp74 std::vector <std::string> components = android::base::Split(start, " "); in StartDataCollection() local
75 if (components.size() != 2) { in StartDataCollection()
79 timeout = atoi(components.at(LOG_TIMEOUT_INDEX).c_str()); in StartDataCollection()
80 samples = atoi(components.at(LOG_SAMPLES_INDEX).c_str()); in StartDataCollection()
/system/sepolicy/prebuilts/api/29.0/public/
Dflags_health_check.te18 # configurable flags related disaster recovery. Mistakenly set up by unrelated components can, at a
24 # configurable flags have been reset during booting. Mistakenly modified by unrelated components can
29 # have been reset during current booting. Mistakenly modified by unrelated components can
Dtzdatacheck.te15 # or break assumptions made / invalidate data held by the components actually
/system/tools/hidl/
DgenerateCppImpl.cpp73 std::vector<std::string> components = fqName.getPackageComponents(); in getImplNamespace() local
74 components.push_back("implementation"); in getImplNamespace()
75 return base::Join(components, "::"); in getImplNamespace()
/system/sepolicy/public/
Dflags_health_check.te22 # configurable flags related disaster recovery. Mistakenly set up by unrelated components can, at a
28 # configurable flags have been reset during booting. Mistakenly modified by unrelated components can
33 # have been reset during current booting. Mistakenly modified by unrelated components can
Dtzdatacheck.te15 # or break assumptions made / invalidate data held by the components actually
/system/sepolicy/prebuilts/api/30.0/public/
Dflags_health_check.te22 # configurable flags related disaster recovery. Mistakenly set up by unrelated components can, at a
28 # configurable flags have been reset during booting. Mistakenly modified by unrelated components can
33 # have been reset during current booting. Mistakenly modified by unrelated components can
Dtzdatacheck.te15 # or break assumptions made / invalidate data held by the components actually
/system/chre/doc/
Dframework_testing.md6 components/modules components are working correctly and API contracts are being
12 Currently, unit tests exist for various core components and utilities. Since
13 platform-specific components likely aren’t compilable/available on a host
14 machine, only components that are OS independent can be tested via this path.
/system/tools/hidl/build/
DfqName.go53 components := strings.Split(pkg, ".")
55 if len(components) > len(f.packageComponents) {
59 for i, v := range components {
/system/core/adb/client/
Dcommandline.cpp1062 std::vector<std::string> components = android::base::Split(service, "-"); in wait_for_device() local
1063 if (components.size() < 3 || components.size() > 4) { in wait_for_device()
1073 if (components.size() == 3) { in wait_for_device()
1074 auto it = components.begin() + 2; in wait_for_device()
1076 components.insert(it, "usb"); in wait_for_device()
1078 components.insert(it, "local"); in wait_for_device()
1080 components.insert(it, "any"); in wait_for_device()
1082 } else if (components[2] != "any" && components[2] != "local" && components[2] != "usb") { in wait_for_device()
1084 components[2].c_str()); in wait_for_device()
1088 if (components[3] != "any" && components[3] != "bootloader" && components[3] != "device" && in wait_for_device()
[all …]
/system/tools/hidl/host_utils/include/hidl-util/
DStringHelper.h75 std::vector<std::string> *components);
78 const std::vector<std::string> &components,
/system/extras/power_profile/gps_on/Application/
Dbuild.gradle26 'common', // components that are reused by multiple samples
/system/sepolicy/prebuilts/api/26.0/private/
Dapp_neverallows.te20 # Only trusted components of Android should be registering
115 # against privileged system components
132 # incidence rate of security issues than system/core components and have
193 # HwBinder services offered by core components (as opposed to vendor components)
/system/sepolicy/prebuilts/api/27.0/private/
Dapp_neverallows.te25 # Only trusted components of Android should be registering
120 # against privileged system components
137 # incidence rate of security issues than system/core components and have
203 # HwBinder services offered by core components (as opposed to vendor components)
/system/sepolicy/prebuilts/api/28.0/private/
Dapp_neverallows.te26 # Only trusted components of Android should be registering
143 # against privileged system components
160 # incidence rate of security issues than system/core components and have
231 # HwBinder services offered by core components (as opposed to vendor components)
/system/sepolicy/prebuilts/api/29.0/private/
Dapp_neverallows.te26 # Only trusted components of Android should be registering
44 # Shared libraries created by trusted components within an app home
201 # against privileged system components
218 # incidence rate of security issues than system/core components and have
292 # HwBinder services offered by core components (as opposed to vendor components)
/system/extras/power_profile/camera_avg/Application/
Dbuild.gradle29 'common', // components that are reused by multiple samples
/system/extras/power_profile/camera_flashlight/Application/
Dbuild.gradle29 'common', // components that are reused by multiple samples
/system/sepolicy/prebuilts/api/27.0/public/
Dtzdatacheck.te15 # or break assumptions made / invalidate data held by the components actually
/system/sepolicy/prebuilts/api/28.0/public/
Dtzdatacheck.te15 # or break assumptions made / invalidate data held by the components actually
Dbootstat.te41 # ... and refine, as these components should not set the last boot reason

1234