/cts/suite/audio_quality/lib/src/ |
BuiltinProcessing.cpp | 64 TaskGeneric::ExecutionResult result = TaskGeneric::EResultOK; local 73 result = TaskGeneric::EResultPass; 82 return result;
|
SimpleScriptExec.cpp | 32 android::String8 result; local 33 if (!runScript(script, param, result)) { 38 return checkIfPassed(result, rePattern); 57 bool result = false; local 60 result = true; 63 return result; 67 android::String8& result) 80 result.clear(); 82 result.append(buffer, len);
|
/cts/suite/audio_quality/lib/src/task/ |
TaskOutput.cpp | 86 bool result = true; local 88 result = mHw->waitForCompletion(); 92 if (!result) {
|
TaskSequential.cpp | 60 TaskGeneric::ExecutionResult result = child->run(); local 61 if ((result != TaskGeneric::EResultOK) && (firstError == TaskGeneric::EResultOK)) { 62 firstError = result; 66 TaskGeneric::ExecutionResult result = runAsyncTasksQueued(); local 67 if ((result != TaskGeneric::EResultOK) && (firstError == TaskGeneric::EResultOK)) { 68 firstError = result; 111 TaskGeneric::ExecutionResult result = child->complete(); local 112 if ((result != TaskGeneric::EResultOK) && (firstError == TaskGeneric::EResultOK)) { 113 firstError = result;
|
/cts/suite/audio_quality/test_description/processing/ |
gen_random.py | 32 result = np.zeros(samples * 2 if stereo else samples, dtype=np.int16) 54 result[2 * i] = filteredData[i] 55 result[2 * i + 1] = filteredData[i] 58 result[i] = filteredData[i] 59 return result 82 result = do_gen_random(inputData[0], inputData[1], inputData[2], inputData[3]) 85 outputData.append(result) 98 result = do_gen_random(peakAmplitude, durationInMSec, samplingRate, fHigh) variable 99 plt.plot(result)
|
/cts/tests/fragment/src/android/fragment/cts/ |
StrictViewFragment.java | 33 final View result = inflater.inflate(R.layout.strict_view_fragment, container, false); local 35 return result;
|
/cts/tests/tests/accounts/common/src/android/accounts/cts/common/tx/ |
AddAccountTx.java | 30 public final Bundle result; field in class:AddAccountTx 37 result = in.readBundle(); 45 Bundle result) { 54 this.result = result; 68 out.writeBundle(result);
|
ConfirmCredentialsTx.java | 26 public final Bundle result; field in class:ConfirmCredentialsTx 31 result = in.readBundle(); 37 Bundle result) { 40 this.result = result; 52 out.writeBundle(result);
|
EditPropertiesTx.java | 24 public final Bundle result; field in class:EditPropertiesTx 28 result = in.readBundle(); 33 Bundle result) { 35 this.result = result; 46 out.writeBundle(result);
|
GetAccountRemovalAllowedTx.java | 25 public final Bundle result; field in class:GetAccountRemovalAllowedTx 29 result = in.readBundle(); 34 Bundle result) { 36 this.result = result; 47 out.writeBundle(result);
|
GetAuthTokenLabelTx.java | 23 public final String result; field in class:GetAuthTokenLabelTx 27 result = in.readString(); 32 String result) { 34 this.result = result; 45 out.writeString(result);
|
GetAuthTokenTx.java | 27 public final Bundle result; field in class:GetAuthTokenTx 33 result = in.readBundle(); 40 Bundle result) { 44 this.result = result; 57 out.writeBundle(result);
|
HasFeaturesTx.java | 29 public final Bundle result; field in class:HasFeaturesTx 34 result = in.readBundle(); 40 Bundle result) { 47 this.result = result; 59 out.writeBundle(result);
|
UpdateCredentialsTx.java | 27 public final Bundle result; field in class:UpdateCredentialsTx 33 result = in.readBundle(); 40 Bundle result) { 44 this.result = result; 57 out.writeBundle(result);
|
/cts/tests/tests/content/src/android/content/cts/ |
MockService.java | 25 public static boolean result = false; field in class:MockService 35 * set the result as true when service bind 39 result = true; 44 * set the result as true when service start 49 result = true;
|
/cts/tests/tests/graphics/jni/ |
android_graphics_cts_VulkanFeaturesTest.cpp | 38 VkResult result; local 54 result = vkCreateInstance(&instance_info, nullptr, &instance); 55 if (result != VK_SUCCESS) { 56 ALOGE("vkCreateInstance failed: %d", result); 57 return result; 61 result = vkEnumeratePhysicalDevices(instance, &ngpu, nullptr); 62 if (result != VK_SUCCESS) { 63 ALOGE("vkEnumeratePhysicalDevices failed: %d", result); 65 return result; 68 result = vkEnumeratePhysicalDevices(instance, &ngpu, gpus.data()) [all...] |
/cts/tests/tests/jni/libjnitest/ |
helper.c | 30 char *result; local 37 int count = vasprintf(&result, format, args); 44 return result; 50 char *result = NULL; local 68 (result == NULL) ? "" : result, 70 free(result); 75 result = newResult; 87 return result;
|
/cts/tests/tests/keystore/src/android/keystore/cts/ |
HexEncoding.java | 44 StringBuilder result = new StringBuilder(len * 2); local 47 result.append(HEX_DIGITS[(b >>> 4) & 0x0f]); 48 result.append(HEX_DIGITS[b & 0x0f]); 50 return result.toString(); 66 byte[] result = new byte[resultLengthBytes]; 70 // Odd number of digits -- the first digit is the lower 4 bits of the first result byte. 71 result[resultOffset++] = (byte) getHexadecimalDigitValue(encoded.charAt(encodedCharOffset)); 75 result[resultOffset++] = (byte) 79 return result;
|
PutOverflowTest.java | 31 Boolean result = (Boolean)put.invoke(keystore, "crashFile", buffer, -1, 0); local 32 assertTrue("Fix for ANDROID-22802399 not present", result);
|
/cts/tests/tests/opengl/libopengltest/ |
gl2_jni_libone.cpp | 138 jfloatArray result; local 141 result = env->NewFloatArray(4); 149 env->SetFloatArrayRegion(result, 0, 4, actualColor); 152 return result;
|
/cts/tests/tests/openglperf/jni/ |
OpenGlPerfNativeJni.cpp | 71 EGLint result = mEglClientWaitSyncKHR(dpy, sync, EGL_SYNC_FLUSH_COMMANDS_BIT_KHR, waitTimeInNs); local 72 if (result == EGL_FALSE) { 75 } else if (result == EGL_TIMEOUT_EXPIRED_KHR) {
|
/cts/tests/tests/os/jni/ |
android_os_cts_NoExecutePermissionTest.cpp | 67 jboolean result = isAddressExecutable((uintptr_t) foo); local 69 return result;
|
/cts/tests/tests/os/src/android/os/cts/ |
SecurityFeaturesTest.java | 41 int result = OSFeatures.prctlCapBsetRead(i); local 42 if (result == -1) { 51 0, result);
|
/cts/tests/tests/security/jni/ |
android_security_cts_LinuxRngTest.cpp | 49 jint result = -1; local 61 result = major(st.st_rdev); 67 return result; 75 jint result = -1; local 87 result = minor(st.st_rdev); 93 return result;
|
/cts/tests/tests/security/src/android/security/cts/ |
PutOverflowTest.java | 31 Boolean result = (Boolean)put.invoke(keystore, "crashFile", buffer, -1, 0); local 32 assertTrue("Fix for ANDROID-22802399 not present", result);
|