HomeSort by relevance Sort by last modified time
    Searched defs:status (Results 201 - 225 of 4870) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/base/core/jni/
android_text_AndroidBidi.cpp 39 UErrorCode status = U_ZERO_ERROR; local
40 UBiDi* bidi = ubidi_openSized(n, 0, &status);
41 ubidi_setPara(bidi, chs, n, dir, NULL, &status);
42 if (U_SUCCESS(status)) {
  /frameworks/rs/
rsSignal.cpp 34 int status = pthread_mutex_init(&mMutex, NULL); local
35 if (status) {
40 status = pthread_cond_init(&mCondition, NULL);
41 if (status) {
51 int status; local
53 status = pthread_mutex_lock(&mMutex);
54 if (status) {
55 ALOGE("LocklessCommandFifo: error %i locking for set condition.", status);
61 status = pthread_cond_signal(&mCondition);
62 if (status) {
73 int status; local
    [all...]
  /frameworks/wilhelm/src/itf/
IPresetReverb.c 51 android::status_t status = android_prev_setPreset(thiz->mPresetReverbEffect, preset); local
52 result = android_fx_statusToResult(status);
83 android::status_t status = android_prev_getPreset(thiz->mPresetReverbEffect, &preset); local
84 result = android_fx_statusToResult(status);
  /hardware/ti/omap3/dspbridge/libbridge/
DSPProcessor_OEM.c 66 DSP_STATUS status = DSP_SOK; local
76 status = DSPTRAP_Trap(&tempStruct, CMD_PROC_CTRL_OFFSET);
79 status = DSP_EHANDLE;
84 return status;
97 DSP_STATUS status = DSP_SOK; local
122 status = DSPTRAP_Trap(&tempStruct,
125 status = DSP_EPOINTER;
130 status = DSP_EINVALIDARG;
136 status = DSP_EHANDLE;
147 return status;
157 DSP_STATUS status = DSP_SOK; local
183 DSP_STATUS status = DSP_SOK; local
    [all...]
  /libcore/luni/src/main/native/
libcore_icu_DateIntervalFormat.cpp 38 UErrorCode status = U_ZERO_ERROR; local
39 DateIntervalFormat* formatter(DateIntervalFormat::createInstance(skeletonHolder.unicodeString(), icuLocale.locale(), status));
40 if (maybeThrowIcuException(env, "DateIntervalFormat::createInstance", status)) {
63 UErrorCode status = U_ZERO_ERROR; local
64 formatter->format(&date_interval, s, pos, status);
65 if (maybeThrowIcuException(env, "DateIntervalFormat::format", status)) {
libcore_icu_NativeIDN.cpp 41 UErrorCode status = U_ZERO_ERROR; local
43 ? uidna_IDNToASCII(src.get(), src.size(), &dst[0], sizeof(dst), flags, NULL, &status)
44 : uidna_IDNToUnicode(src.get(), src.size(), &dst[0], sizeof(dst), flags, NULL, &status);
45 if (U_FAILURE(status)) {
46 jniThrowException(env, "java/lang/IllegalArgumentException", u_errorName(status));
libcore_icu_NativeNormalizer.cpp 32 UErrorCode status = U_ZERO_ERROR; local
34 Normalizer::normalize(src.unicodeString(), mode, 0, dst, status);
35 maybeThrowIcuException(env, "Normalizer::normalize", status);
45 UErrorCode status = U_ZERO_ERROR; local
46 UBool result = Normalizer::isNormalized(src.unicodeString(), mode, status);
47 maybeThrowIcuException(env, "Normalizer::isNormalized", status);
  /ndk/sources/android/crazy_linker/tests/
test_shared_relro.cpp 89 int status; local
90 waitpid(child, &status, 0);
92 if (WIFSIGNALED(status))
94 else if (WIFEXITED(status)) {
95 int child_status = WEXITSTATUS(status);
97 Panic("Child terminated with status=%d\n", child_status);
test_two_shared_relros.cpp 103 int status; local
104 waitpid(child, &status, 0);
106 if (WIFSIGNALED(status))
108 else if (WIFEXITED(status)) {
109 int child_status = WEXITSTATUS(status);
111 Panic("Child terminated with status=%d\n", child_status);
  /ndk/sources/host-tools/make-3.81/
amiga.c 36 int status; local
75 status = SystemTags (buffer,
82 status = 20;
85 if (status == 5)
86 status = 0;
88 return status;
  /packages/apps/Mms/src/com/android/mms/ui/
DeliveryReportItem.java 26 String status; field in class:DeliveryReportItem
29 public DeliveryReportItem(String recipient, String status, String deliveryDate) {
31 this.status = status;
  /system/core/logwrapper/
logwrapper.c 46 " fault address is set to the status of wait()\n"
56 int status = 0xAAAA; local
83 rc = android_fork_execvp_ext(argc, &argv[0], &status, true,
86 if (WIFEXITED(status))
87 rc = WEXITSTATUS(status);
93 uintptr_t fault_address = (uintptr_t) status;
94 *(int *) fault_address = 0; // causes SIGSEGV with fault_address = status
  /system/extras/ext4_utils/
setup_fs.c 16 int status, n; local
56 while ((pid=waitpid(-1, &status, 0)) != child) {
  /system/extras/tests/cpueater/
daemonize.c 35 int status = 0; local
117 waitpid(pid, &status, 0);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/tv/
TvAppVerifierActivity.java 71 ImageView status = (ImageView) item.findViewById(R.id.status); local
72 status.setImageResource(passed ? R.drawable.fs_good : R.drawable.fs_error);
76 status.invalidate();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UnwrapRefactoringTest.java 53 RefactoringStatus status = refactoring.checkInitialConditions(new NullProgressMonitor()); local
54 assertFalse(status.hasError());
  /bionic/libc/bionic/
clone.cpp 37 extern "C" __noreturn void __exit(int status);
41 int status = (*fn)(arg); local
42 __exit(status);
  /bootable/recovery/
adb_install.cpp 97 int status; local
101 if (waitpid(child, &status, WNOHANG) != 0) {
131 waitpid(child, &status, 0);
134 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
135 if (WEXITSTATUS(status) == 3) {
137 } else if (!WIFSIGNALED(status)) {
138 ui->Print("\n(adbd status %d)\n", WEXITSTATUS(status));
  /cts/tests/tests/security/jni/
android_security_cts_AudioPolicyBinderTest.cpp 100 status_t status = aps->startOutput(output, (audio_stream_type_t)(AUDIO_STREAM_MIN -1), local
102 if (status == NO_ERROR) {
105 status = aps->startOutput(output, (audio_stream_type_t)AUDIO_STREAM_CNT,
107 if (status == NO_ERROR) {
128 status_t status = aps->stopOutput(output, (audio_stream_type_t)(AUDIO_STREAM_MIN -1), local
130 if (status == NO_ERROR) {
133 status = aps->stopOutput(output, (audio_stream_type_t)AUDIO_STREAM_CNT,
135 if (status == NO_ERROR) {
android_security_cts_LoadEffectLibraryTest.cpp 58 status_t status = binder->transact(i, data, &reply); local
59 if (status != NO_ERROR) {
62 status = reply.readInt32();
63 if (status != NO_ERROR) {
72 status = AudioEffect::getEffectDescriptor(&uuid, &desc);
73 if (status == NO_ERROR) {
  /cts/tools/junit/src/com/android/cts/junit/
SingleJUnitTestRunner.java 44 String status = result.wasSuccessful() ? PASSED_TEST_MARKER : FAILED_TEST_MARKER; local
45 System.out.println(String.format("%s %s.%s", status,
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyCommandEvent.java 42 int status = p.waitFor(); local
43 System.err.println("// Shell command " + mCmd + " status was " + status);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
SetValues002Debuggee.java 39 static String status = passedStatus; field in class:SetValues002Debuggee
60 status = failedStatus;
65 logWriter.println("--> Debuggee: Send check status for SetValues002Test...\n");
66 synchronizer.sendMessage(status);
  /external/apache-http/src/org/apache/http/impl/client/
DefaultProxyAuthenticationHandler.java 63 int status = response.getStatusLine().getStatusCode(); local
64 return status == HttpStatus.SC_PROXY_AUTHENTICATION_REQUIRED;
DefaultTargetAuthenticationHandler.java 63 int status = response.getStatusLine().getStatusCode(); local
64 return status == HttpStatus.SC_UNAUTHORIZED;

Completed in 992 milliseconds

1 2 3 4 5 6 7 891011>>