HomeSort by relevance Sort by last modified time
    Searched refs:ok (Results 226 - 250 of 1896) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/netd/server/
NetdNativeService.cpp 53 return binder::Status::ok();
78 if (ret != android::OK) {
84 return android::OK;
109 return binder::Status::ok();
119 return binder::Status::ok();
127 return binder::Status::ok();
152 return binder::Status::ok();
173 return binder::Status::ok();
187 return binder::Status::ok();
201 return binder::Status::ok();
    [all...]
  /system/weaved/buffet/
binder_command_proxy.cc 46 return android::binder::Status::ok();
54 return android::binder::Status::ok();
63 return android::binder::Status::ok();
71 return android::binder::Status::ok();
80 return android::binder::Status::ok();
89 return android::binder::Status::ok();
98 return android::binder::Status::ok();
107 return android::binder::Status::ok();
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
locref1.d 8 # relocation is ok when building an executable.
  /development/ndk/platforms/android-14/samples/native-media/jni/
native-media-jni.c 113 int ok; local
119 ok = pthread_mutex_lock(&mutex);
120 assert(0 == ok);
137 ok = pthread_cond_signal(&cond);
138 assert(0 == ok);
195 ok = pthread_mutex_unlock(&mutex);
196 assert(0 == ok);
511 int ok; local
512 ok = pthread_mutex_lock(&mutex);
513 assert(0 == ok);
    [all...]
  /external/webp/src/enc/
syntax.c 178 // All OK.
317 int ok = 0; local
322 ok = GeneratePartition0(enc);
323 if (!ok) return 0;
355 ok = ok && PutWebPHeaders(enc, size0, vp8_size, riff_size)
366 ok = ok && pic->writer(buf, size, pic);
368 ok = ok && WebPReportProgress(pic, enc->percent_ + percent_per_part
    [all...]
  /frameworks/wilhelm/tests/native-media/jni/
native-media-jni.c 103 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);
527 int ok; local
528 ok = pthread_mutex_lock(&mutex);
529 assert(0 == ok);
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
list_test.cpp 299 CPPUNIT_CHECK( stack1.ok() );
300 CPPUNIT_CHECK( stack2.ok() );
321 CPPUNIT_CHECK( stack1.ok() );
322 CPPUNIT_CHECK( stack2.ok() );
343 CPPUNIT_CHECK( stack1.ok() );
344 CPPUNIT_CHECK( stack2.ok() );
355 CPPUNIT_CHECK( stack1.ok() );
356 CPPUNIT_CHECK( stack2.ok() );
367 CPPUNIT_CHECK( stack1.ok() );
368 CPPUNIT_CHECK( stack2.ok() );
    [all...]
codecvt_test.cpp 78 return ok;
104 return ok;
163 if (icur == iend) return ok;
169 return ok;
181 return ok;
195 return ok;
200 return ok;
210 return ok;
224 return ok;
402 CPPUNIT_ASSERT( res == cdecvt_type::ok );
    [all...]
  /ndk/tests/device/test-stlport/unit/
list_test.cpp 299 CPPUNIT_CHECK( stack1.ok() );
300 CPPUNIT_CHECK( stack2.ok() );
321 CPPUNIT_CHECK( stack1.ok() );
322 CPPUNIT_CHECK( stack2.ok() );
343 CPPUNIT_CHECK( stack1.ok() );
344 CPPUNIT_CHECK( stack2.ok() );
355 CPPUNIT_CHECK( stack1.ok() );
356 CPPUNIT_CHECK( stack2.ok() );
367 CPPUNIT_CHECK( stack1.ok() );
368 CPPUNIT_CHECK( stack2.ok() );
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
EllipticCurveTest.java 86 } catch (NullPointerException ok) {
98 } catch (NullPointerException ok) {
110 } catch (NullPointerException ok) {
136 } catch (IllegalArgumentException ok) {
149 } catch (IllegalArgumentException ok) {
162 } catch (IllegalArgumentException ok) {
175 } catch (IllegalArgumentException ok) {
201 } catch (IllegalArgumentException ok) {
214 } catch (IllegalArgumentException ok) {
227 } catch (IllegalArgumentException ok) {
    [all...]
  /external/boringssl/src/crypto/cipher/
aead.c 61 int ok; local
63 ok = aead->init(ctx, key, key_len, tag_len);
65 ok = aead->init_with_direction(ctx, key, key_len, tag_len, dir);
68 if (!ok) {
72 return ok;
  /external/iptables/extensions/
libxt_devgroup.c 49 bool ok; local
51 ok = xtables_strtoui(arg, &end, group, 0, UINT32_MAX);
52 if (ok && (*end == '/' || *end == '\0')) {
54 ok = xtables_strtoui(end + 1, NULL, mask,
58 if (!ok)
  /external/libcxx/test/std/localization/locale.stdcvt/
codecvt_utf16_out.pass.cpp 39 assert(r == std::codecvt_base::ok);
49 assert(r == std::codecvt_base::ok);
59 assert(r == std::codecvt_base::ok);
69 assert(r == std::codecvt_base::ok);
106 assert(r == std::codecvt_base::ok);
116 assert(r == std::codecvt_base::ok);
133 assert(r == std::codecvt_base::ok);
145 assert(r == std::codecvt_base::ok);
157 assert(r == std::codecvt_base::ok);
169 assert(r == std::codecvt_base::ok);
    [all...]
codecvt_utf8_utf16_out.pass.cpp 39 assert(r == std::codecvt_base::ok);
49 assert(r == std::codecvt_base::ok);
58 assert(r == std::codecvt_base::ok);
66 assert(r == std::codecvt_base::ok);
92 assert(r == std::codecvt_base::ok);
100 assert(r == std::codecvt_base::ok);
114 assert(r == std::codecvt_base::ok);
127 assert(r == std::codecvt_base::ok);
139 assert(r == std::codecvt_base::ok);
150 assert(r == std::codecvt_base::ok);
    [all...]
  /frameworks/wilhelm/tests/sandbox/
multithread.c 130 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);
  /libcore/luni/src/test/java/tests/security/spec/
EllipticCurveTest.java 87 } catch (NullPointerException ok) {}
98 } catch (NullPointerException ok) {}
109 } catch (NullPointerException ok) {}
134 } catch (IllegalArgumentException ok) {}
146 } catch (IllegalArgumentException ok) {}
158 } catch (IllegalArgumentException ok) {}
170 } catch (IllegalArgumentException ok) {}
195 } catch (IllegalArgumentException ok) {}
207 } catch (IllegalArgumentException ok) {}
219 } catch (IllegalArgumentException ok) {}
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.stdcvt/
codecvt_utf16_out.pass.cpp 39 assert(r == std::codecvt_base::ok);
49 assert(r == std::codecvt_base::ok);
59 assert(r == std::codecvt_base::ok);
69 assert(r == std::codecvt_base::ok);
106 assert(r == std::codecvt_base::ok);
116 assert(r == std::codecvt_base::ok);
133 assert(r == std::codecvt_base::ok);
145 assert(r == std::codecvt_base::ok);
157 assert(r == std::codecvt_base::ok);
169 assert(r == std::codecvt_base::ok);
    [all...]
codecvt_utf8_utf16_out.pass.cpp 39 assert(r == std::codecvt_base::ok);
49 assert(r == std::codecvt_base::ok);
58 assert(r == std::codecvt_base::ok);
66 assert(r == std::codecvt_base::ok);
92 assert(r == std::codecvt_base::ok);
100 assert(r == std::codecvt_base::ok);
114 assert(r == std::codecvt_base::ok);
127 assert(r == std::codecvt_base::ok);
139 assert(r == std::codecvt_base::ok);
150 assert(r == std::codecvt_base::ok);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
abc.py 161 ok = cls.__subclasshook__(subclass)
162 if ok is not NotImplemented:
163 assert isinstance(ok, bool)
164 if ok:
168 return ok
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/command/
type_printers.py 77 ok = False
80 ok = True
82 ok = True
84 ok = True
85 if not ok:
  /prebuilts/gdb/linux-x86/lib/python2.7/
abc.py 161 ok = cls.__subclasshook__(subclass)
162 if ok is not NotImplemented:
163 assert isinstance(ok, bool)
164 if ok:
168 return ok
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/command/
type_printers.py 77 ok = False
80 ok = True
82 ok = True
84 ok = True
85 if not ok:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
abc.py 161 ok = cls.__subclasshook__(subclass)
162 if ok is not NotImplemented:
163 assert isinstance(ok, bool)
164 if ok:
168 return ok
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
abc.py 161 ok = cls.__subclasshook__(subclass)
162 if ok is not NotImplemented:
163 assert isinstance(ok, bool)
164 if ok:
168 return ok
  /external/boringssl/src/tool/
digest.cc 253 bool ok = true; local
288 ok = false;
317 ok = false;
326 ok = false;
331 printf("%s: OK\n", target_filename.c_str());
349 ok = false;
352 return ok;
439 bool ok = true; local
443 ok &= Check(check_args, md, source);
447 ok &= PrintFileSum(md, source)
    [all...]

Completed in 1797 milliseconds

1 2 3 4 5 6 7 8 91011>>