| /frameworks/native/opengl/libs/EGL/ |
| D | eglApi.cpp | 52 return cnx->platform.eglGetDisplay(display); in eglGetDisplay() 55 EGLDisplay eglGetPlatformDisplay(EGLenum platform, EGLNativeDisplayType display, in eglGetPlatformDisplay() argument 67 return cnx->platform.eglGetPlatformDisplay(platform, display, attrib_list); in eglGetPlatformDisplay() 74 return cnx->platform.eglInitialize(dpy, major, minor); in eglInitialize() 81 return cnx->platform.eglTerminate(dpy); in eglTerminate() 89 return cnx->platform.eglGetConfigs(dpy, configs, config_size, num_config); in eglGetConfigs() 97 return cnx->platform.eglChooseConfig(dpy, attrib_list, configs, config_size, num_config); in eglChooseConfig() 104 return cnx->platform.eglGetConfigAttrib(dpy, config, attribute, value); in eglGetConfigAttrib() 112 return cnx->platform.eglCreateWindowSurface(dpy, config, window, attrib_list); in eglCreateWindowSurface() 120 return cnx->platform.eglCreatePlatformWindowSurface(dpy, config, native_window, attrib_list); in eglCreatePlatformWindowSurface() [all …]
|
| D | egl_angle_platform.cpp | 25 #include <EGL/Platform.h> 41 static const unsigned char* getTraceCategoryEnabledFlag(PlatformMethods* /*platform*/, in getTraceCategoryEnabledFlag() 49 static double monotonicallyIncreasingTime(PlatformMethods* /*platform*/) { in monotonicallyIncreasingTime() 53 static void logError(PlatformMethods* /*platform*/, const char* errorMessage) { in logError() 57 static void logWarning(PlatformMethods* /*platform*/, const char* warningMessage) { in logWarning() 61 static void logInfo(PlatformMethods* /*platform*/, const char* infoMessage) { in logInfo() 66 PlatformMethods* /**platform*/, char phase, const unsigned char* /*category_group_enabled*/, in addTraceEvent()
|
| /frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/ |
| D | PlatformKeyManagerTest.java | 117 eq("com.android.server.locksettings.recoverablekeystore/platform/42/1/encrypt"), in init_createsEncryptKeyWithCorrectAlias() 159 eq("com.android.server.locksettings.recoverablekeystore/platform/42/1/decrypt"), in init_createsDecryptKeyWithCorrectAlias() 222 eq("com.android.server.locksettings.recoverablekeystore/platform/42/1/decrypt"), in init_doesNotCreateDecryptKeyIfNoSid() 234 eq("com.android.server.locksettings.recoverablekeystore/platform/42/1/decrypt"), in init_doesNotCreateDecryptKeyOnGateKeeperException() 279 + "platform/42/1/decrypt")).thenReturn(true); in init_doesNotIncrementGenerationIdIfKeyAvailable() 282 + "platform/42/1/encrypt")).thenReturn(true); in init_doesNotIncrementGenerationIdIfKeyAvailable() 298 + "platform/42/1/decrypt")).thenReturn(true); in getDecryptKey_getsDecryptKeyWithCorrectAlias() 301 + "platform/42/1/encrypt")).thenReturn(true); in getDecryptKey_getsDecryptKeyWithCorrectAlias() 303 eq("com.android.server.locksettings.recoverablekeystore/platform/42/1/decrypt"), in getDecryptKey_getsDecryptKeyWithCorrectAlias() 309 eq("com.android.server.locksettings.recoverablekeystore/platform/42/1/decrypt"), in getDecryptKey_getsDecryptKeyWithCorrectAlias() [all …]
|
| /frameworks/native/opengl/include/EGL/ |
| D | Platform.h | 6 // Platform.h: The public interface ANGLE exposes to the API layer, for 7 // doing platform-specific tasks like gathering data, or for tracing. 52 using CurrentTimeFunc = double (*)(PlatformMethods *platform); 53 inline double DefaultCurrentTime(PlatformMethods *platform) in DefaultCurrentTime() argument 61 using MonotonicallyIncreasingTimeFunc = double (*)(PlatformMethods *platform); 62 inline double DefaultMonotonicallyIncreasingTime(PlatformMethods *platform) in DefaultMonotonicallyIncreasingTime() argument 69 // Log an error message within the platform implementation. 70 using LogErrorFunc = void (*)(PlatformMethods *platform, const char *errorMessage); 71 inline void DefaultLogError(PlatformMethods *platform, const char *errorMessage) in DefaultLogError() argument 75 // Log a warning message within the platform implementation. [all …]
|
| /frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/ |
| D | PlatformKeyManager.java | 50 * Manages creating and checking the validity of the platform key. 52 * <p>The platform key is used to wrap the material of recoverable keys before persisting them to 56 * <p>Each platform key has two entries in AndroidKeyStore: 74 "com.android.server.locksettings.recoverablekeystore/platform/"; 119 * Returns the current generation ID of the platform key. This increments whenever a platform 123 * @param userId The ID of the user to whose lock screen the platform key must be bound. 132 * Returns {@code true} if the platform key is available. A platform key won't be available if 135 * @param userId The ID of the user to whose lock screen the platform key must be bound. 144 * Removes the platform key from Android KeyStore. 147 * @param userId The ID of the user to whose lock screen the platform key must be bound. [all …]
|
| /frameworks/av/media/codec2/vndk/include/ |
| D | C2PlatformSupport.h | 28 * Returns the platform allocator store. 29 * \retval nullptr if the platform allocator store could not be obtained 34 * Platform allocator store IDs 40 * ID of the ion backed platform allocator. 51 * ID of the gralloc backed platform allocator. 60 * ID of the bufferqueue backed platform allocator. 69 * ID of indicating the end of platform allocator definition. 73 * Extended platform store plugin should use this macro as the start ID of its own allocator 121 * Returns the platform component store. 122 * \retval nullptr if the platform component store could not be obtained [all …]
|
| D | C2PlatformStorePluginLoader.h | 29 * Extern C interface for creating block pool from platform store extension. 39 * Extern C interface for creating allocator from platform store extension. 54 * Creates block pool from platform store extension. 62 * \retval C2_BAD_INDEX the input allocatorId is not defined in platform store extension. 69 * Creates allocator from platform store extension. 81 * \retval C2_BAD_INDEX the input allocatorId is not defined in platform store extension.
|
| /frameworks/base/core/tests/coretests/src/com/android/internal/util/ |
| D | DumpUtilsTest.java | 130 assertFalse(filterRecord("all-platform").test(wcn("com.google.p/abc"))); in testFilterRecord() 131 assertTrue(filterRecord("all-platform").test(wcn("com.android.p/abc"))); in testFilterRecord() 132 assertFalse(filterRecord("all-platform").test(wcn(null))); in testFilterRecord() 134 assertTrue(filterRecord("all-non-platform").test(wcn("com.google.p/abc"))); in testFilterRecord() 135 assertFalse(filterRecord("all-non-platform").test(wcn("com.android.p/abc"))); in testFilterRecord() 136 assertFalse(filterRecord("all-non-platform").test(wcn(null))); in testFilterRecord() 139 assertTrue(filterRecord("all-platform-critical").test((() -> componentName))); in testFilterRecord() 140 assertFalse(filterRecord("all-platform-non-critical").test((() -> componentName))); in testFilterRecord() 141 assertTrue(filterRecord("all-platform").test((() -> componentName))); in testFilterRecord() 143 assertFalse(filterRecord("all-platform-critical").test(wcn("com.google.p/abc"))); in testFilterRecord() [all …]
|
| /frameworks/base/core/java/com/android/internal/util/ |
| D | DumpUtils.java | 174 * Return whether a package name is considered to be part of the platform. 185 * Return whether a package name is considered to be part of the platform. 193 * Return whether a package name is considered to be part of the platform. 201 * Return whether a package name is NOT considered to be part of the platform. 209 * Return whether a package name is NOT considered to be part of the platform. 217 * Return whether a package name is NOT considered to be part of the platform. 241 * Return whether a package name is considered to be part of the platform and in the critical 252 * Return whether a package name is considered to be part of the platform but not in the the 279 // Dump all platform? in filterRecord() 280 if ("all-platform".equals(filterString)) { in filterRecord() [all …]
|
| /frameworks/base/core/tests/coretests/src/android/content/pm/ |
| D | PackageParserTest.java | 57 // declared min SDK and not as platform codenames. 90 // Do allow older release minSdkVersion on pre-release platform. in testComputeMinSdkVersion_preReleasePlatform() 95 // Do allow same release minSdkVersion on pre-release platform. in testComputeMinSdkVersion_preReleasePlatform() 100 // Don't allow newer release minSdkVersion on pre-release platform. in testComputeMinSdkVersion_preReleasePlatform() 105 // Don't allow older pre-release minSdkVersion on pre-release platform. in testComputeMinSdkVersion_preReleasePlatform() 111 // Do allow same pre-release minSdkVersion on pre-release platform, in testComputeMinSdkVersion_preReleasePlatform() 121 // Don't allow newer pre-release minSdkVersion on pre-release platform. in testComputeMinSdkVersion_preReleasePlatform() 130 // Do allow older release minSdkVersion on released platform. in testComputeMinSdkVersion_releasedPlatform() 135 // Do allow same release minSdkVersion on released platform. in testComputeMinSdkVersion_releasedPlatform() 140 // Don't allow newer release minSdkVersion on released platform. in testComputeMinSdkVersion_releasedPlatform() [all …]
|
| /frameworks/av/apex/ |
| D | ld.config.txt | 11 additional.namespaces = platform,sphal 25 namespace.default.links = platform 28 # namespace.default.link.platform.shared_libs = %LLNDK_LIBRARIES% 29 # namespace.default.link.platform.shared_libs += %SANITIZER_RUNTIME_LIBRARIES% 30 namespace.default.link.platform.shared_libs = libEGL.so:libGLESv1_CM.so:libGLESv2.so:libGLESv3.so:l… 33 # "platform" namespace 38 namespace.platform.isolated = true 40 namespace.platform.search.paths = /system/${LIB} 41 namespace.platform.asan.search.paths = /data/asan/system/${LIB} 42 namespace.platform.asan.search.paths += /system/${LIB} [all …]
|
| /frameworks/base/location/lib/ |
| D | README.txt | 8 public platform SDK API. 9 o This library can see and instantiate internal platform classes (such as 12 library because they cannot see the internal platform classes. 21 can not use internal platform classes. 23 So ideally all of these classes would be part of the public platform SDK API, 29 It wraps internal platform classes (like ProviderRequest) with a stable
|
| /frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/DevTools/ |
| D | full_mac_build.sh | 239 -destination "platform=iOS Simulator,name=iPhone 4s,OS=8.1" # 32bit 240 -destination "platform=iOS Simulator,name=iPhone 6,OS=9.0" # 64bit 241 -destination "platform=iOS Simulator,name=iPad 2,OS=8.1" # 32bit 242 -destination "platform=iOS Simulator,name=iPad Air,OS=9.0" # 64bit 247 -destination "platform=iOS Simulator,name=iPhone 4s,OS=8.1" # 32bit 248 -destination "platform=iOS Simulator,name=iPhone 6,OS=9.2" # 64bit 249 -destination "platform=iOS Simulator,name=iPad 2,OS=8.1" # 32bit 250 -destination "platform=iOS Simulator,name=iPad Air,OS=9.2" # 64bit 255 -destination "platform=iOS Simulator,name=iPhone 4s,OS=8.1" # 32bit 256 -destination "platform=iOS Simulator,name=iPhone 6,OS=9.3" # 64bit [all …]
|
| /frameworks/native/vulkan/ |
| D | README.md | 3 …ntains Android's Vulkan loader, as well as some Vulkan-related tools useful to platform developers. 7 …d of two spaces. In general, any C++ features supported by the prebuilt platform toolchain are all… 13 …on must be done manually because the generator tools aren't part of the platform toolchain (yet?).… 20 … git clone https://android.googlesource.com/platform/tools/gpu $GOPATH/src/android.googlesource.co… 21 - `$ go get android.googlesource.com/platform/tools/gpu/api/...`
|
| /frameworks/opt/gamesdk/third_party/protobuf-3.0.0/ |
| D | appveyor.yml | 4 platform: 29 - if %platform%==Win32 set generator=Visual Studio 12 30 - if %platform%==Win64 set generator=Visual Studio 12 Win64 31 - if %platform%==Win32 set vcplatform=Win32 32 - if %platform%==Win64 set vcplatform=x64
|
| /frameworks/base/telephony/java/android/telephony/ims/stub/ |
| D | ImsSmsImplBase.java | 57 * IMS provider failed to send the message and platform should not retry falling back to sending 63 * IMS provider failed to send the message and platform should retry again after setting TP-RD 69 * IMS provider failed to send the message and platform should retry falling back to sending 139 * This method will be triggered by the platform when the user attempts to send an SMS. This 143 * @param token unique token generated by the platform that should be used when triggering 164 * This method will be triggered by the platform after 181 * This method will be triggered by the platform after 197 * platform will deliver the message to the messages database and notify the IMS provider of the 201 * the platform is not available, {@link #acknowledgeSms(int, int, int)} will be called with the 203 * @param token unique token generated by IMS providers that the platform will use to trigger [all …]
|
| /frameworks/base/tests/FlickerTests/lib/test/ |
| D | Android.bp | 19 // sign this with platform cert, so this test is allowed to call private platform apis 20 certificate: "platform", 27 "platform-test-annotations",
|
| /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/ |
| D | typedefs.h | 20 * Description : Definition of platform independent data 24 * The following platform independent data types and corresponding 42 * PLATFORM string indicating platform progam is compiled on 45 * OSF only defined if the current platform is an Alpha 46 * PC only defined if the current platform is a PC 47 * SUN only defined if the current platform is a Sun 49 * LSBFIRST is defined if the byte order on this platform is
|
| /frameworks/base/media/lib/tvremote/ |
| D | README.txt | 8 public platform SDK API. 9 o This library can see and instantiate internal platform classes, but it must not 11 break clients of the library because they cannot see the internal platform classes. 20 platform classes.
|
| /frameworks/base/media/lib/signer/ |
| D | README.txt | 19 public platform SDK API. 20 o This library can see and instantiate internal platform classes, but it must not 22 break clients of the library because they cannot see the internal platform classes. 30 Unbundled apps cannot use internal platform classes.
|
| /frameworks/base/media/lib/remotedisplay/ |
| D | README.txt | 17 public platform SDK API. 18 o This library can see and instantiate internal platform classes, but it must not 20 break clients of the library because they cannot see the internal platform classes. 29 platform classes.
|
| /frameworks/av/media/codec2/core/include/ |
| D | C2BufferBase.h | 38 * That platform-agnostic Codec 2.0 API only defines the bare minimum usages. Platforms shall define 39 * usage bits that are appropriate for the platform. 51 * platform specific, but this flag is reserved to prevent mapping this block into CPU 66 * is platform specific, but this flag is reserved to prevent mapping this block into CPU 75 * Buffer usage bits reserved for the platform. We don't separately reserve read and
|
| /frameworks/base/core/tests/coretests/apks/keyset/ |
| D | Android.bp | 103 //apks signed by platform only 108 certificate: "platform", 112 //apks signed by platform and keyset_A 117 certificate: "platform",
|
| /frameworks/base/services/tests/servicestests/src/com/android/server/ |
| D | BootReceiverFixFsckFsStatTest.java | 51 … "/dev/block/platform/soc/624000.ufshc/by-name/userdata: ***** FILE SYSTEM WAS MODIFIED *****" in testTreeOptimization() 78 … "/dev/block/platform/soc/624000.ufshc/by-name/userdata: ***** FILE SYSTEM WAS MODIFIED *****" in testQuotaOnly() 100 … "/dev/block/platform/soc/624000.ufshc/by-name/userdata: ***** FILE SYSTEM WAS MODIFIED *****" in testOrphaned() 119 … "/dev/block/platform/soc/624000.ufshc/by-name/userdata: ***** FILE SYSTEM WAS MODIFIED *****" in testTimestampAdjustment() 137 … "/dev/block/platform/soc/624000.ufshc/by-name/userdata: ***** FILE SYSTEM WAS MODIFIED *****" in testTimestampAdjustmentNoFixLine() 161 … "/dev/block/platform/soc/624000.ufshc/by-name/userdata: ***** FILE SYSTEM WAS MODIFIED *****" in testTimestampAdjustmentWithQuotaFix() 186 … "/dev/block/platform/soc/624000.ufshc/by-name/userdata: ***** FILE SYSTEM WAS MODIFIED *****" in testAllNonFixes()
|
| /frameworks/ml/nn/common/random/ |
| D | guarded_philox_random.h | 20 //#include "tensorflow/core/platform/mutex.h" 21 //#include "tensorflow/core/platform/default/mutex.h" 22 #include "tensorflow/core/platform/macros.h" 23 #include "tensorflow/core/platform/types.h"
|