/cts/tests/tests/security/jni/ |
D | android_security_cts_LinuxRngTest.cpp | 51 struct stat st; in android_security_cts_LinuxRngTest_getCharDeviceMajor() local 52 if (stat(nameStr, &st) == -1) { in android_security_cts_LinuxRngTest_getCharDeviceMajor() 57 if (!S_ISCHR(st.st_mode)) { in android_security_cts_LinuxRngTest_getCharDeviceMajor() 58 throwIOException(env, "%s is not a character device: mode is 0%o", nameStr, st.st_mode); in android_security_cts_LinuxRngTest_getCharDeviceMajor() 62 result = major(st.st_rdev); in android_security_cts_LinuxRngTest_getCharDeviceMajor() 77 struct stat st; in android_security_cts_LinuxRngTest_getCharDeviceMinor() local 78 if (stat(nameStr, &st) == -1) { in android_security_cts_LinuxRngTest_getCharDeviceMinor() 83 if (!S_ISCHR(st.st_mode)) { in android_security_cts_LinuxRngTest_getCharDeviceMinor() 84 throwIOException(env, "%s is not a character device: mode is 0%o", nameStr, st.st_mode); in android_security_cts_LinuxRngTest_getCharDeviceMinor() 88 result = minor(st.st_rdev); in android_security_cts_LinuxRngTest_getCharDeviceMinor()
|
D | android_security_cts_cve_2019_2213_Test.c | 847 struct stat st; in map_path() local 848 if (fstat(fd, &st) < 0) in map_path() 850 void *map = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0); in map_path() 853 *size = st.st_size; in map_path() 1027 struct stat st; in locate_hooks() local 1028 if (fstat(fd, &st) < 0) in locate_hooks() 1030 if (!S_ISLNK(st.st_mode)) in locate_hooks()
|
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2017-0477/ |
D | poc.c | 52 struct stat st; in main() local 53 fstat(fd, &st); in main() 54 void *ptr = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0); in main() 56 gdx2d_pixmap *pixmap = gdx2d_load((unsigned char *) ptr, st.st_size); in main()
|
/cts/tests/tests/media/src/android/media/cts/ |
D | MediaStubActivity2.java | 67 public void onSurfaceTextureAvailable(SurfaceTexture st, int width, int height) { in onSurfaceTextureAvailable() argument 69 final Surface s = new Surface(st); in onSurfaceTextureAvailable() 75 public void onSurfaceTextureSizeChanged(SurfaceTexture st, int width, int height) { in onSurfaceTextureSizeChanged() argument 79 public boolean onSurfaceTextureDestroyed(SurfaceTexture st) { in onSurfaceTextureDestroyed() argument 84 public void onSurfaceTextureUpdated(SurfaceTexture st) { in onSurfaceTextureUpdated() argument
|
D | TextureRender.java | 97 public void drawFrame(SurfaceTexture st) { in drawFrame() argument 99 st.getTransformMatrix(mSTMatrix); in drawFrame()
|
D | OutputSurface.java | 298 public void onFrameAvailable(SurfaceTexture st) { in onFrameAvailable() argument
|
D | DecodeAccuracyTestBase.java | 1062 public void onFrameAvailable(SurfaceTexture st) { in onFrameAvailable() argument 1065 st.getTransformMatrix(textureTransform); in onFrameAvailable()
|
D | VideoEncoderTest.java | 807 public void onFrameAvailable(SurfaceTexture st) { in onFrameAvailable() argument
|
/cts/tests/tests/mediastress/src/android/mediastress/cts/ |
D | NativeMediaActivity.java | 150 SurfaceTexture st = mGLView.getSurfaceTexture(); in setSurfaceForNative() local 151 Assert.assertNotNull(st); in setSurfaceForNative() 152 Surface s = new Surface(st); in setSurfaceForNative()
|
/cts/tests/openglperf2/jni/ |
D | Trace.h | 22 #define SCOPED_TRACE() android::ScopedTrace st(ATRACE_TAG, __func__)
|
/cts/tests/camera/src/android/hardware/camera2/cts/ |
D | FastBasicsTest.java | 213 SurfaceTexture st = new SurfaceTexture(/*random int*/ 5); in testCamera1() local 214 st.setOnFrameAvailableListener(listener); in testCamera1() 216 camera.setPreviewTexture(st); in testCamera1()
|
D | ExtendedCameraCharacteristicsTest.java | 2076 SurfaceTexture st = new SurfaceTexture(1); in testStreamConfigurationMap() local 2077 Surface surf = new Surface(st); in testStreamConfigurationMap() 2098 st.setDefaultBufferSize(size.getWidth(), size.getHeight()); in testStreamConfigurationMap() 2109 st.setDefaultBufferSize(invalidSize.getWidth(), invalidSize.getHeight()); in testStreamConfigurationMap()
|
/cts/tests/tests/identity/src/android/security/identity/cts/ |
D | DynamicAuthTest.java | 513 byte[] st = Util.buildSessionTranscript(ekp); in dynamicAuthWithExpirationTest() 519 st, in dynamicAuthWithExpirationTest() 543 byte[] st = Util.buildSessionTranscript(ekp); in dynamicAuthWithExpirationTest() 549 st, in dynamicAuthWithExpirationTest() 572 byte[] st = Util.buildSessionTranscript(ekp); in dynamicAuthWithExpirationTest() 578 st, in dynamicAuthWithExpirationTest()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/ |
D | UserRestrictions.java | 243 for (String st : RESTRICTION_IDS_FOR_POLICY_TRANSPARENCY) { in getUserRestrictionsForPolicyTransparency() 244 if (!st.equals(UserManager.DISALLOW_REMOVE_MANAGED_PROFILE) in getUserRestrictionsForPolicyTransparency() 245 && !st.equals(UserManager.DISALLOW_UNIFIED_PASSWORD)) { in getUserRestrictionsForPolicyTransparency() 246 result.add(st); in getUserRestrictionsForPolicyTransparency()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/ |
D | CtsMediaTextureRender.java | 101 public void drawFrame(SurfaceTexture st) { in drawFrame() argument 103 st.getTransformMatrix(mSTMatrix); in drawFrame()
|
D | CtsMediaOutputSurface.java | 302 public void onFrameAvailable(SurfaceTexture st) { in onFrameAvailable() argument
|
/cts/tests/media/src/android/mediav2/cts/ |
D | TextureRender.java | 95 public void drawFrame(SurfaceTexture st) { in drawFrame() argument 97 st.getTransformMatrix(mSTMatrix); in drawFrame()
|
D | OutputSurface.java | 302 public void onFrameAvailable(SurfaceTexture st) { in onFrameAvailable() argument
|
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2019-2025/ |
D | IPCThreadState.h | 120 static void threadDestructor(void *st);
|
/cts/apps/CameraITS/tests/sensor_fusion/ |
D | test_sensor_fusion.py | 358 p1, st, _ = cv2.calcOpticalFlowPyrLK(gframe0, gframe1, p0_filtered, None, 360 tform = _procrustes_rotation(p0_filtered[st == 1], p1[st == 1]) 372 for x, y in p0_filtered[st == 1]:
|
/cts/hostsidetests/incident/src/com/android/server/cts/ |
D | PackageIncidentTest.java | 50 final long st = System.currentTimeMillis(); in testPackageServiceDump() local
|
/cts/tests/tests/contactsprovider/src/android/provider/cts/contacts/ |
D | ContactsContract_AllUriTest.java | 673 try (InputStream st = mResolver.openInputStream(uri)) { in testAllFileOperations() 685 try (OutputStream st = mResolver.openOutputStream(uri)) { in testAllFileOperations()
|
/cts/tools/vm-tests-tf/lib/ |
D | junit.jar | META-INF/
META-INF/MANIFEST.MF
junit/
junit/awtui/
junit/ ... |
/cts/tests/tests/media/assets/hls_variant/165340/ |
D | 06.ts | 134 d�����st�Z�Kw�F.^}!�U*�CDlW�qkp�6+������kx��o�RҒ�/�Hy,�Du�a��F��}I�GEp���"͞\ �9��=��…
|
/cts/tests/tests/media/assets/hls_variant/387360/ |
D | 06.ts | 975 …B�Gb�� �P����Ҧ������U��b�_E�,[Ύ���e}�d��x>�`";�*��Ә�ڠ-F�9�g2����st|����<*����I�0������…
|