Home
last modified time | relevance | path

Searched refs:namespace (Results 1 – 23 of 23) sorted by relevance

/platform_testing/libraries/sts-common-util/host-side/src/com/android/sts/common/
DSystemUtil.java66 final ITestDevice device, final String namespace, final String key, String value)
68 String getSettingRes = device.getSetting(namespace, key);
71 device.setSetting(namespace, key, value);
73 String.format("Could not set %s:%s to %s", namespace, key, value),
74 device.getSetting(namespace, key),
81 String cmd = String.format("settings delete %s %s", namespace, key);
85 device.setSetting(namespace, key, oldValue);
88 assumeThat(failMsg, device.getSetting(namespace, key), equalTo(oldValue));
/platform_testing/libraries/flag-helpers/junit/src_util/android/platform/test/flag/util/
DFlag.java53 String namespace = null; in createFlag() local
59 namespace = flagSplits[0]; in createFlag()
76 return new AutoValue_Flag(namespace, fullFlagName, packageName, simpleFlagName); in createFlag()
80 public abstract String namespace(); in namespace() method in Flag
/platform_testing/libraries/flag-helpers/libflagtest/
Dandroid.test.myflags.aconfig5 namespace: "flagtest"
12 namespace: "flagtest"
/platform_testing/libraries/collectors-helper/statsd/src/com/android/helpers/
DDeviceConfigHelper.java27 public static String setConfigValue(String namespace, String setting, String value) { in setConfigValue() argument
30 String command = String.format("device_config put %s %s %s", namespace, setting, value); in setConfigValue()
DUiInteractionFrameInfoHelper.java70 final String namespace = "interaction_jank_monitor"; in enforceSampling() local
71 DeviceConfigHelper.setConfigValue(namespace, "enabled", enabled ? "true" : "false"); in enforceSampling()
72 DeviceConfigHelper.setConfigValue(namespace, "sampling_interval", "1"); in enforceSampling()
/platform_testing/libraries/flag-helpers/libflagtest/include/
Dflag_macros.h32 #define _FLAG_NAME(namespace, flag) namespace::flag argument
88 #define LEGACY_FLAG(namespace, package, flag) \ argument
90 nullptr, _FLAG_STRINGFY(namespace, package, flag))
Dflag_checker.h28 namespace android::test::flag {
/platform_testing/libraries/flag-helpers/junit/test/src/android/platform/test/flag/util/
DFlagTest.java35 assertEquals("namespace", flag.namespace()); in createFlag_legacyFlag()
54 assertNull(flag.namespace()); in createFlag_aconfigFlagWithoutRepackaging()
66 assertNull(flag.namespace()); in createFlag_aconfigFlagWithRepackaging()
/platform_testing/libraries/screenshot/deviceless/layoutlib/tests/src/com/android/ide/common/resources/deprecated/
DValueResourceParser.java111 ResourceNamespace namespace = ResourceNamespace.fromBoolean(mIsFramework); in startElement() local
131 namespace, name, parent, mLibraryName); in startElement()
137 namespace, name, null, mLibraryName); in startElement()
142 new AttrResourceValueImpl(namespace, name, mLibraryName); in startElement()
147 new ArrayResourceValueImpl(namespace, name, mLibraryName); in startElement()
153 namespace, type, name, null, mLibraryName); in startElement()
173 mCurrentAttr = new AttrResourceValueImpl(namespace, name, mLibraryName); in startElement()
/platform_testing/utils/shell-as/
Dtest-app.h22 namespace shell_as {
Dexecute.h22 namespace shell_as {
Delf-utils.h22 namespace shell_as {
Dcommand-line.h22 namespace shell_as {
Dshell-code.h27 namespace shell_as {
Dstring-utils.h24 namespace shell_as {
Dcontext.h27 namespace shell_as {
DAndroid.bp95 " echo 'namespace shell_as {';" +
103 " echo '} // namespace shell_as';" +
/platform_testing/libraries/screenshot/deviceless/layoutlib/tests/src/com/android/layoutlib/bridge/intensive/setup/
DLayoutPullParser.java96 String namespace = getAttributeNamespace(i); in getViewCookie() local
97 if (namespace != null && namespace.equals(TOOLS_URI)) { in getViewCookie()
/platform_testing/libraries/sts-common-util/device-side/src/com/android/sts/common/
DSystemUtil.java51 final String namespace, in withSetting() argument
54 UserSettings userSettings = new UserSettings(UserSettings.Namespace.of(namespace)); in withSetting()
62 String.format("Could not set %s:%s to %s", namespace, key, value), in withSetting()
/platform_testing/tests/featureflag/src/android/test/featureflag/
DFeatureFlagTest.java57 private String getFlagValue(String namespace, String flag) throws DeviceNotAvailableException { in getFlagValue() argument
60 String.format("device_config get %s %s", namespace, flag)); in getFlagValue()
/platform_testing/tools/automotive/proxy/include/libProxyConfig/
DlibProxyConfig.h22 namespace android::automotive::proxyconfig {
/platform_testing/libraries/flag-helpers/junit/src/android/platform/test/flag/junit/
DDeviceFlagsValueProvider.java73 if (parsedFlag.namespace() != null) { in getBoolean()
125 String property = DeviceConfig.getProperty(flag.namespace(), flag.fullFlagName()); in getLegacyFlagBoolean()
/platform_testing/libraries/flag-helpers/junit/src_host/android/platform/test/flag/junit/host/
DDeviceFlags.java123 String namespace = parsedFlag.getNamespace(); in getAconfigFlags()
132 namespace, in getAconfigFlags()