/aosp_15_r20/packages/modules/NeuralNetworks/runtime/test/ |
D | TestExtensions.cpp | 134 auto native_info = [&](const std::string& binaryPath) -> android::nn::AppInfoFetcher::AppInfo { in TEST_F() argument 135 return {.binaryPath = binaryPath, in TEST_F() 228 EXPECT_TRUE(TypeManager::isExtensionsUseAllowed({.binaryPath = binary, in TEST_F() 237 EXPECT_FALSE(TypeManager::isExtensionsUseAllowed({.binaryPath = binary, in TEST_F() 246 EXPECT_TRUE(TypeManager::isExtensionsUseAllowed({.binaryPath = binary, in TEST_F() 255 EXPECT_FALSE(TypeManager::isExtensionsUseAllowed({.binaryPath = binary, in TEST_F() 264 EXPECT_TRUE(TypeManager::isExtensionsUseAllowed({.binaryPath = binary, in TEST_F() 273 EXPECT_EQ(TypeManager::isExtensionsUseAllowed({.binaryPath = binary, in TEST_F() 283 EXPECT_EQ(TypeManager::isExtensionsUseAllowed({.binaryPath = binary, in TEST_F() 293 EXPECT_EQ(TypeManager::isExtensionsUseAllowed({.binaryPath = binary, in TEST_F() [all …]
|
/aosp_15_r20/packages/modules/NeuralNetworks/runtime/ |
D | TypeManager.cpp | 134 if (appPackageInfo.binaryPath.starts_with("/vendor/") || in isExtensionsUseAllowed() 135 appPackageInfo.binaryPath.starts_with("/odm/") || in isExtensionsUseAllowed() 136 appPackageInfo.binaryPath.starts_with("/data/") || in isExtensionsUseAllowed() 137 (appPackageInfo.binaryPath.starts_with("/product/") && useOnProductImageEnabled)) { in isExtensionsUseAllowed() 144 if (appPackageInfo.binaryPath.starts_with("/data/nativetest") || in isExtensionsUseAllowed() 146 appPackageInfo.binaryPath.starts_with(NN_TMP_DIR "/NeuralNetworksTest_")) { in isExtensionsUseAllowed() 150 return std::find(allowlist.begin(), allowlist.end(), appPackageInfo.binaryPath) != in isExtensionsUseAllowed() 152 } else if (appPackageInfo.binaryPath == "/system/bin/app_process64" || in isExtensionsUseAllowed() 153 appPackageInfo.binaryPath == "/system/bin/app_process32") { in isExtensionsUseAllowed()
|
D | AppInfoFetcher.cpp | 64 : appInfo({.binaryPath = ::android::procpartition::getExe(getpid()), in AppInfoFetcher() 69 if (appInfo.binaryPath == "/system/bin/app_process64" || 70 appInfo.binaryPath == "/system/bin/app_process32") { 80 : appInfo({.binaryPath = "/system/bin/app_process64",
|
D | AppInfoFetcher.h | 39 std::string binaryPath; member
|
/aosp_15_r20/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/binary/ |
D | ExecutableHostTest.java | 129 String binaryPath, ITestInvocationListener listener, TestDescription description) in runBinary() argument 141 File workingDir = new File(binaryPath).getParentFile(); in runBinary() 146 ldLibraryPath = TestRunnerUtil.getLdLibraryPath(new File(binaryPath)); in runBinary() 177 FileUtil.chmodRWXRecursively(new File(binaryPath)); in runBinary() 180 String scriptName = new File(binaryPath).getName(); in runBinary() 184 command.add(binaryPath); in runBinary() 219 CLog.d("Checking whether device is still online after %s", binaryPath); in runBinary() 226 "Device became unavailable after %s.", binaryPath), in runBinary()
|
D | ExecutableTargetTest.java | 137 String binaryPath, ITestInvocationListener listener, TestDescription description) in runBinary() argument 144 binaryPath, getTimeoutPerBinaryMs(), TimeUnit.MILLISECONDS); in runBinary()
|
D | ExecutableBaseTest.java | 329 String binaryPath, ITestInvocationListener listener, TestDescription description) in runBinary() argument 451 for (String binaryPath : binaryPaths) { in getTestShard() 452 shard.mBinaryPaths.add(binaryPath); in getTestShard()
|
D | KernelTargetTest.java | 137 String binaryPath, ITestInvocationListener listener, TestDescription description) in runBinary() argument 144 super.runBinary(binaryPath, listener, description); in runBinary()
|
/aosp_15_r20/external/bazelbuild-rules_go/tests/core/go_bazel_test/ |
H A D | dataargtest_test.go | 27 binaryPath = flag.String("binaryPath", "", "") var 48 bp, err := bazel.Runfile(*binaryPath) 50 t.Fatalf("unable to get the runfile path %#v: %s", *binaryPath, err)
|
H A D | BUILD.bazel | 6 args = ["-binaryPath=$(location //tests/core/go_binary:hello)"],
|
/aosp_15_r20/system/chre/host/common/test/ |
H A D | chre_test_client.cc | 272 const char *binaryPath) { in sendLoadNanoappRequest() argument 276 readFileContents(binaryPath, binaryBuffer)) { in sendLoadNanoappRequest() 374 const std::string binaryPath{argi < argc ? argv[argi++] : ""}; in main() local 376 if (headerPath.empty() || binaryPath.empty()) { in main() 381 sendLoadNanoappRequest(client, headerPath.c_str(), binaryPath.c_str()); in main()
|
/aosp_15_r20/external/sl4a/Common/src/com/googlecode/android_scripting/ |
H A D | Process.java | 114 String binaryPath = mBinary.getAbsolutePath(); in start() local 115 Log.v("Executing " + binaryPath + " with arguments " + mArguments + " and with environment " in start() 123 Exec.createSubprocess(binaryPath, argumentsArray, getEnvironmentArray(), in start()
|
/aosp_15_r20/system/chre/host/common/ |
H A D | chre_aidl_hal_client.cc | 281 const std::string &appName, const std::string &binaryPath) { in findHeaderByName() argument 282 DIR *dir = opendir(binaryPath.c_str()); in findHeaderByName() 294 std::ifstream input(std::string(binaryPath) + "/" + entry->d_name, in findHeaderByName() 306 const std::string &binaryPath) { in readNanoappHeaders() argument 307 DIR *dir = opendir(binaryPath.c_str()); in readNanoappHeaders() 317 std::ifstream input(std::string(binaryPath) + "/" + entry->d_name, in readNanoappHeaders()
|
/aosp_15_r20/packages/modules/Virtualization/tests/helper/src/java/com/android/microdroid/test/device/ |
D | MicrodroidDeviceTestBase.java | 157 public VirtualMachineConfig.Builder newVmConfigBuilderWithPayloadBinary(String binaryPath) { in newVmConfigBuilderWithPayloadBinary() argument 161 .setPayloadBinaryName(binaryPath); in newVmConfigBuilderWithPayloadBinary()
|
/aosp_15_r20/tools/tradefederation/core/javatests/com/android/tradefed/testtype/ |
D | GTestBaseTest.java | 53 public String loadFilter(String binaryPath) { in loadFilter() argument
|
/aosp_15_r20/external/OpenCL-CTS/test_common/harness/ |
H A D | kernelHelpers.cpp | 229 const std::string &binaryPath, in should_save_kernel_source_to_disk() argument 240 saveToDisk = !file_exist_on_disk(binaryPath, binaryName); in should_save_kernel_source_to_disk()
|
/aosp_15_r20/packages/modules/Virtualization/tests/testapk/src/java/com/android/microdroid/test/ |
D | MicrodroidTests.java | 2393 private VirtualMachineConfig buildVmConfigWithVendor(File vendorDiskImage, String binaryPath) in buildVmConfigWithVendor() argument 2406 newVmConfigBuilderWithPayloadBinary(binaryPath) in buildVmConfigWithVendor()
|
/aosp_15_r20/prebuilts/jdk/jdk8/linux-x86/lib/ |
D | tools.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/services/com. ... |
/aosp_15_r20/prebuilts/jdk/jdk8/darwin-x86/lib/ |
D | tools.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/services/com. ... |
/aosp_15_r20/tools/tradefederation/prebuilts/filegroups/tradefed/ |
D | tradefed-tests.jar | IncludeFilterTest.jar
META-INF/
META-INF/LICENSE
META-INF/MANIFEST.MF
... |
D | tradefed.jar | FileMd5$FileChecksum$1.class
FileMd5.java
package FileMd5$FileChecksum$1 extends com. ... |