Searched refs:cur (Results 1 – 4 of 4) sorted by relevance
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2018-9466/ |
D | poc-CVE-2017-9049.c | 27 static char *xmlPosixStrdup(const char *cur) { in xmlPosixStrdup() argument 28 return ((char *)xmlCharStrdup(cur)); in xmlPosixStrdup()
|
/cts/hostsidetests/compilation/assets/ |
D | README.txt | 8 $ adb shell ls -l /data/misc/profiles/cur/0/android.compilation.cts/primary.prof 10 $ adb pull /data/misc/profiles/cur/0/android.compilation.cts/primary.prof ./
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/ |
D | TestListActivity.java | 256 private static String[] removeString(String[] cur, String val) { in removeString() argument 257 if (cur == null) { in removeString() 260 final int n = cur.length; in removeString() 262 if (Objects.equals(cur[i], val)) { in removeString() 265 System.arraycopy(cur, 0, ret, 0, i); in removeString() 268 System.arraycopy(cur, i + 1, ret, i, n - i - 1); in removeString() 273 return cur; in removeString()
|
/cts/hostsidetests/appsecurity/test-apps/WriteExternalStorageApp/src/com/android/cts/writeexternalstorageapp/ |
D | WriteExternalStorageTest.java | 374 File cur = Environment.getExternalStorageDirectory(); in testExternalStorageRename() local 375 try (FileOutputStream fos = new FileOutputStream(new File(cur, name))) { in testExternalStorageRename() 388 final File before = new File(cur, name); in testExternalStorageRename() 396 cur = next; in testExternalStorageRename() 400 try (FileInputStream fis = new FileInputStream(new File(cur, name))) { in testExternalStorageRename()
|