Searched defs:ok (Results 1 - 20 of 20) sorted by path

/frameworks/av/media/libmedia/
H A DMetadata.cpp83 bool ok = true; local
86 ok = ok && mData->writeInt32(-1) == OK;
87 ok = ok && mData->writeInt32(kMetaMarker) == OK;
88 return ok;
98 bool ok = true; local
101 ok = ok && mData->writeInt32(4 * sizeof(int32_t)) == OK;
102 ok
118 bool ok = true; local
[all...]
/frameworks/av/media/libstagefright/codecs/flac/enc/
H A DSoftFlacEncoder.cpp297 FLAC__bool ok = FLAC__stream_encoder_process_interleaved( local
302 if (ok) {
399 FLAC__bool ok = true; local
401 ok = ok && FLAC__stream_encoder_set_channels(mFlacStreamEncoder, mNumChannels);
402 ok = ok && FLAC__stream_encoder_set_sample_rate(mFlacStreamEncoder, mSampleRate);
403 ok = ok && FLAC__stream_encoder_set_bits_per_sample(mFlacStreamEncoder, 16);
404 ok
[all...]
/frameworks/av/services/audioflinger/
H A DAudioResampler.cpp143 int ok = pthread_once(&once_control, init_routine); local
144 if (ok != 0) {
145 ALOGE("%s pthread_once failed: %d", __func__, ok);
H A DAudioResamplerSinc.cpp224 int ok = pthread_once(&once_control, init_routine); local
225 if (ok != 0) {
226 ALOGE("%s pthread_once failed: %d", __func__, ok);
H A DServiceUtilities.cpp31 bool ok = checkCallingPermission(sRecordAudio); local
32 if (!ok) ALOGE("Request requires android.permission.RECORD_AUDIO");
33 return ok;
40 bool ok = checkCallingPermission(sAudioSettings); local
41 if (!ok) ALOGE("Request requires android.permission.MODIFY_AUDIO_SETTINGS");
42 return ok;
49 bool ok = PermissionCache::checkCallingPermission(sDump); local
51 //if (!ok) ALOGE("Request requires android.permission.DUMP");
52 return ok;
/frameworks/base/core/java/android/text/method/
H A DNumberKeyListener.java54 if (!ok(accept, source.charAt(i))) {
77 if (!ok(accept, source.charAt(j))) {
85 protected static boolean ok(char[] accept, char c) { method in class:NumberKeyListener
/frameworks/wilhelm/src/
H A DThreadPool.c169 int ok; local
175 ok = pthread_mutex_lock(&tp->mMutex);
176 assert(0 == ok);
178 ok = pthread_cond_broadcast(&tp->mCondNotEmpty);
179 assert(0 == ok);
180 ok = pthread_cond_broadcast(&tp->mCondNotFull);
181 assert(0 == ok);
182 ok = pthread_mutex_unlock(&tp->mMutex);
183 assert(0 == ok);
186 ok
279 int ok; local
330 int ok; local
[all...]
H A Dentry.c35 int ok; local
36 ok = pthread_mutex_lock(&theOneTrueMutex);
37 assert(0 == ok);
98 ok = pthread_mutex_unlock(&theOneTrueMutex);
99 assert(0 == ok);
170 ok = pthread_mutex_unlock(&theOneTrueMutex);
171 assert(0 == ok);
H A Dlocks.c36 int ok; local
37 ok = pthread_mutex_trylock(&thiz->mMutex);
38 if (0 != ok) {
46 ok = pthread_mutex_lock_timeout_np(&thiz->mMutex, backoffs[i]);
47 if (0 == ok) {
50 if (EBUSY == ok) {
52 } else if (EDEADLK == ok) {
57 SL_LOGE("%s:%d: pthread_mutex_lock_timeout_np returned %d", file, line, ok);
79 ok = pthread_mutex_lock(&thiz->mMutex);
80 assert(0 == ok);
112 int ok; local
130 int ok; local
137 int ok; local
162 int ok; local
285 int ok; local
296 int ok; local
307 int ok; local
319 int ok; local
[all...]
/frameworks/wilhelm/src/desktop/
H A DSndFile.c253 int ok; local
254 ok = pthread_mutex_init(&thiz->mSndFile.mMutex, (const pthread_mutexattr_t *) NULL);
255 assert(0 == ok);
282 int ok; local
283 ok = pthread_mutex_destroy(&thiz->mSndFile.mMutex);
284 assert(0 == ok);
/frameworks/wilhelm/src/itf/
H A DIObject.c96 int ok = pthread_mutex_lock(&theOneTrueMutex); local
97 assert(0 == ok);
99 ok = pthread_mutex_unlock(&theOneTrueMutex);
100 assert(0 == ok);
349 // Can't get interface on an unrealized object unless pre-realize is ok
771 int ok; local
772 ok = pthread_mutex_init(&thiz->mMutex, (const pthread_mutexattr_t *) NULL);
773 assert(0 == ok);
780 ok = pthread_cond_init(&thiz->mCond, (const pthread_condattr_t *) NULL);
781 assert(0 == ok);
793 int ok; local
[all...]
/frameworks/wilhelm/src/objects/
H A DCEngine.c178 int ok; local
179 ok = pthread_mutex_lock(&theOneTrueMutex);
180 assert(0 == ok);
185 ok = pthread_mutex_unlock(&theOneTrueMutex);
186 assert(0 == ok);
/frameworks/wilhelm/tests/examples/
H A DslesTestDecodeAac.cpp181 int ok; local
182 ok = pthread_mutex_lock(&mutex);
183 assert(ok == 0);
185 ok = pthread_cond_signal(&cond);
186 assert(ok == 0);
187 ok = pthread_mutex_unlock(&mutex);
188 assert(ok == 0);
417 int ok; local
419 ok = fstat(fd, &statbuf);
420 if (ok <
[all...]
/frameworks/wilhelm/tests/listening/
H A DslesTest_playMuteSolo.cpp90 int ok; local
91 ok = pthread_mutex_lock(&mutex);
92 assert(ok == 0);
94 ok = pthread_cond_signal(&cond);
95 assert(ok == 0);
96 ok = pthread_mutex_unlock(&mutex);
97 assert(ok == 0);
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestLoopUri.cpp91 int ok; local
92 ok = pthread_mutex_lock(&mutex);
93 assert(ok == 0);
95 ok = pthread_cond_signal(&cond);
96 assert(ok == 0);
97 ok = pthread_mutex_unlock(&mutex);
98 assert(ok == 0);
H A DslesTestSlowDownUri.cpp136 int ok; local
137 ok = pthread_mutex_lock(&mutex);
138 assert(ok == 0);
140 ok = pthread_cond_signal(&cond);
141 assert(ok == 0);
142 ok = pthread_mutex_unlock(&mutex);
143 assert(ok == 0);
/frameworks/wilhelm/tests/native-media/jni/
H A Dnative-media-jni.c103 int ok; local
109 ok = pthread_mutex_lock(&mutex);
110 assert(0 == ok);
126 ok = pthread_cond_signal(&cond);
127 assert(0 == ok);
219 ok = pthread_mutex_unlock(&mutex);
220 assert(0 == ok);
529 int ok; local
530 ok = pthread_mutex_lock(&mutex);
531 assert(0 == ok);
[all...]
/frameworks/wilhelm/tests/sandbox/
H A Dmultithread.c130 int ok; local
155 ok = pthread_create(&threads[i], (const pthread_attr_t *) NULL, thread_start,
157 assert(0 == ok);
185 ok = pthread_join(threads[i], NULL);
186 assert(0 == ok);
H A Dreverb.c210 int ok; local
211 ok = pthread_mutex_lock(&mutex);
212 assert(ok == 0);
214 ok = pthread_cond_signal(&cond);
215 assert(ok == 0);
216 ok = pthread_mutex_unlock(&mutex);
217 assert(ok == 0);
H A Dxaplay.c118 int ok; local
119 ok = pthread_mutex_lock(&mutex);
120 assert(ok == 0);
122 ok = pthread_cond_signal(&cond);
123 assert(ok == 0);
124 ok = pthread_mutex_unlock(&mutex);
125 assert(ok == 0);
321 int ok; local
323 ok = fstat(fd, &statbuf);
324 if (ok <
[all...]

Completed in 2171 milliseconds