Home
last modified time | relevance | path

Searched refs:operationCode (Results 1 – 10 of 10) sorted by relevance

/packages/modules/OnDevicePersonalization/framework/java/android/adservices/ondevicepersonalization/
DIsolatedService.java216 int operationCode, in onRequest() argument
225 performRequest(operationCode, params, resultCallback); in onRequest()
232 int operationCode, in performRequest() argument
236 if (operationCode == Constants.OP_EXECUTE) { in performRequest()
238 } else if (operationCode == Constants.OP_DOWNLOAD) { in performRequest()
240 } else if (operationCode == Constants.OP_RENDER) { in performRequest()
242 } else if (operationCode == Constants.OP_WEB_VIEW_EVENT) { in performRequest()
244 } else if (operationCode == Constants.OP_TRAINING_EXAMPLE) { in performRequest()
246 } else if (operationCode == Constants.OP_WEB_TRIGGER) { in performRequest()
249 throw new IllegalArgumentException("Invalid op code: " + operationCode); in performRequest()
/packages/services/AlternativeNetworkAccess/src/com/android/ons/
DONSProfileDownloader.java107 int operationCode = ((Intent) msg.obj).getIntExtra( in handleMessage() local
113 Log.d(TAG, "Operation Code : " + operationCode); in handleMessage()
117 detailedErrCode, operationCode, errorCode); in handleMessage()
143 int operationCode, in mapDownloaderErrorCode() argument
146 if (operationCode == EuiccManager.OPERATION_SMDX_SUBJECT_REASON_CODE) { in mapDownloaderErrorCode()
/packages/modules/NeuralNetworks/runtime/test/
DTestValidateOperations.cpp1039 void argMinMaxTest(ANeuralNetworksOperationType operationCode, int32_t inputOperandType) { in argMinMaxTest() argument
1054 OperationTestBase test(operationCode, {input0, axis}, {output}); in argMinMaxTest()
1301 void simpleMathOpTest(ANeuralNetworksOperationType operationCode, int32_t operandCode) { in simpleMathOpTest() argument
1314 operationCode, {input1, input2, activation}, {output}, in simpleMathOpTest()
1410 void binaryOpTest(ANeuralNetworksOperationType operationCode, int32_t operandCode) { in binaryOpTest() argument
1417 OperationTestBase test(operationCode, {input1, input2}, {output}); in binaryOpTest()
1461 void activationOpTest(ANeuralNetworksOperationType operationCode, int32_t operandCode) { in activationOpTest() argument
1467 if (operationCode == ANEURALNETWORKS_FLOOR || operationCode == ANEURALNETWORKS_LOGISTIC || in activationOpTest()
1468 operationCode == ANEURALNETWORKS_RELU || operationCode == ANEURALNETWORKS_RELU1 || in activationOpTest()
1469 operationCode == ANEURALNETWORKS_RELU6 || operationCode == ANEURALNETWORKS_TANH) { in activationOpTest()
[all …]
/packages/modules/OnDevicePersonalization/src/com/android/ondevicepersonalization/services/serviceflow/
DServiceFlowType.java67 ServiceFlowType(String taskName, int operationCode, Priority priority, int executionTimeout) { in ServiceFlowType() argument
69 mOperationCode = operationCode; in ServiceFlowType()
/packages/modules/OnDevicePersonalization/src/com/android/ondevicepersonalization/services/process/
DPluginProcessRunner.java112 int operationCode, in runIsolatedService() argument
115 + " op: " + operationCode); in runIsolatedService()
120 pluginParams.putInt(PARAM_OPERATION_KEY, operationCode); in runIsolatedService()
DSharedIsolatedProcessRunner.java134 @NonNull IsolatedServiceInfo isolatedProcessInfo, int operationCode,
141 operationCode, serviceParams,
DProcessRunner.java39 int operationCode, in runIsolatedService() argument
/packages/modules/OnDevicePersonalization/framework/java/android/adservices/ondevicepersonalization/aidl/
DIIsolatedService.aidl25 in int operationCode, in onRequest() argument
DIDataAccessService.aidl25 in int operationCode, in onRequest() argument
/packages/services/AlternativeNetworkAccess/tests/src/com/android/ons/
DONSProfileDownloaderTest.java135 ONSProfileDownloader.DownloadRetryResultCode operationCode, in testDownloadSuccessCallback()