HomeSort by relevance Sort by last modified time
    Searched defs:cb (Results 76 - 100 of 412) sorted by null

1 2 34 5 6 7 8 91011>>

  /bionic/libc/kernel/common/linux/
relay.h 65 struct rchan_callbacks *cb; member in struct:rchan
99 struct rchan_callbacks *cb);
  /bootable/recovery/minui/
events.c 37 ev_callback cb; member in struct:fd_info
79 ev_fdinfo[ev_count].cb = input_cb;
90 int ev_add_fd(int fd, ev_callback cb, void *data)
92 if (ev_misc_count == MAX_MISC_FDS || cb == NULL)
97 ev_fdinfo[ev_count].cb = cb;
129 ev_callback cb = ev_fdinfo[n].cb; local
130 if (cb && (ev_fds[n].revents & ev_fds[n].events))
131 cb(ev_fds[n].fd, ev_fds[n].revents, ev_fdinfo[n].data)
    [all...]
  /development/ndk/platforms/android-3/include/linux/
relay.h 54 struct rchan_callbacks *cb; member in struct:rchan
88 struct rchan_callbacks *cb);
  /external/chromium/chrome/browser/safe_browsing/
client_side_detection_host_unittest.cc 230 ClientSideDetectionService::ClientReportPhishingRequestCallback* cb; local
238 .WillOnce(DoAll(DeleteArg<0>(), SaveArg<1>(&cb)));
241 ASSERT_TRUE(cb);
246 cb->Run(GURL(verdict.url()), false);
247 delete cb;
261 ClientSideDetectionService::ClientReportPhishingRequestCallback* cb; local
269 .WillOnce(DoAll(DeleteArg<0>(), SaveArg<1>(&cb)));
272 ASSERT_TRUE(cb);
277 cb->Run(GURL(verdict.url()), false);
278 delete cb;
287 ClientSideDetectionService::ClientReportPhishingRequestCallback* cb; local
343 ClientSideDetectionService::ClientReportPhishingRequestCallback* cb; local
    [all...]
  /external/chromium/net/disk_cache/
disk_cache_test_base.cc 54 TestCompletionCallback cb; local
55 int rv = cache_impl_->FlushQueueForTest(&cb);
56 ASSERT_EQ(net::OK, cb.GetResult(rv));
82 TestCompletionCallback cb; local
83 int rv = cache_->OpenEntry(key, entry, &cb);
84 return cb.GetResult(rv);
89 TestCompletionCallback cb; local
90 int rv = cache_->CreateEntry(key, entry, &cb);
91 return cb.GetResult(rv);
95 TestCompletionCallback cb; local
101 TestCompletionCallback cb; local
108 TestCompletionCallback cb; local
114 TestCompletionCallback cb; local
121 TestCompletionCallback cb; local
142 TestCompletionCallback cb; local
149 TestCompletionCallback cb; local
158 TestCompletionCallback cb; local
166 TestCompletionCallback cb; local
174 TestCompletionCallback cb; local
256 TestCompletionCallback cb; local
283 TestCompletionCallback cb; local
    [all...]
  /external/chromium/net/tools/crash_cache/
crash_cache.cc 125 TestCompletionCallback cb; local
127 reinterpret_cast<disk_cache::BackendImpl*>(cache)->FlushQueueForTest(&cb);
128 cb.GetResult(rv); // Ignore the result;
134 TestCompletionCallback cb; local
138 NULL, &cache, &cb);
139 if (cb.GetResult(rv) != net::OK || cache->GetEntryCount())
150 rv = cache->CreateEntry(test_name, &entry, &cb);
151 if (cb.GetResult(rv) != net::OK)
161 rv = cache->CreateEntry(test_name, &entry, &cb);
162 if (cb.GetResult(rv) != net::OK
174 TestCompletionCallback cb; local
217 TestCompletionCallback cb; local
    [all...]
  /external/openssl/apps/
dhparam.c 146 static int MS_CALLBACK dh_cb(int p, int n, BN_GENCB *cb);
295 BN_GENCB cb; local
296 BN_GENCB_set(&cb, dh_cb, bio_err);
312 NULL, 0, NULL, NULL, &cb))
333 if(!dh || !DH_generate_parameters_ex(dh, num, g, &cb))
537 static int MS_CALLBACK dh_cb(int p, int n, BN_GENCB *cb)
545 BIO_write(cb->arg,&c,1);
546 (void)BIO_flush(cb->arg);
dsaparam.c 108 static int MS_CALLBACK dsa_cb(int p, int n, BN_GENCB *cb);
291 BN_GENCB cb; local
292 BN_GENCB_set(&cb, dsa_cb, bio_err);
318 if(!DSA_generate_parameters_ex(dsa,num,NULL,0,NULL,NULL, &cb))
461 static int MS_CALLBACK dsa_cb(int p, int n, BN_GENCB *cb)
469 BIO_write(cb->arg,&c,1);
470 (void)BIO_flush(cb->arg);
  /external/openssl/crypto/des/
speed.c 189 long ca,cb,cc,cd,ce; local
215 cb=count*3;
241 printf("Doing DES_encrypt %ld times\n",cb);
244 for (count=0,run=1; COND(cb); count++)
252 b=((double)COUNT(cb)*8)/d;
  /external/openssl/crypto/engine/
eng_int.h 103 ENGINE_CLEANUP_CB *cb; member in struct:st_engine_cleanup_item
106 void engine_cleanup_add_first(ENGINE_CLEANUP_CB *cb);
107 void engine_cleanup_add_last(ENGINE_CLEANUP_CB *cb);
131 void engine_table_doall(ENGINE_TABLE *table, engine_table_doall_cb *cb, void *arg);
eng_table.c 84 engine_table_doall_cb *cb; member in struct:st_engine_pile_doall
339 dall->cb(pile->nid, pile->sk, pile->funct, dall->arg);
343 void engine_table_doall(ENGINE_TABLE *table, engine_table_doall_cb *cb,
347 dall.cb = cb;
  /external/openssl/crypto/rc2/
rc2speed.c 185 long ca,cb,cc; local
208 cb=count;
237 printf("Doing RC2_encrypt %ld times\n",cb);
240 for (count=0,run=1; COND(cb); count+=4)
251 b=((double)COUNT(cb)*8)/d;
  /external/openssl/crypto/rc4/
rc4speed.c 185 long ca,cb,cc; local
  /external/openssl/crypto/rsa/
rsa_pmeth.c 660 BN_GENCB *pcb, cb; local
673 pcb = &cb;
  /external/qemu/block/
raw.c 93 BlockDriverCompletionFunc *cb, void *opaque)
95 return bdrv_aio_readv(bs->file, sector_num, qiov, nb_sectors, cb, opaque);
100 BlockDriverCompletionFunc *cb; member in struct:RawScrubberBounce
110 b->cb(b->opaque, ret);
112 b->cb(b->opaque, ret + 512);
121 BlockDriverCompletionFunc *cb, void *opaque)
151 b->cb = cb;
165 return bdrv_aio_writev(bs->file, sector_num, qiov, nb_sectors, cb, opaque);
178 BlockDriverCompletionFunc *cb, void *opaque
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/timer/
SDL_timer.c 43 SDL_NewTimerCallback cb; member in struct:_SDL_TimerID
131 ms = timer.cb(timer.interval, timer.param);
171 t->cb = callback;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowRemoteCallbackList.java 50 Callback cb = new Callback(callback, cookie); local
51 binder.linkToDeath(cb, 0);
52 callbacks.put(binder, cb);
63 Callback cb = callbacks.remove(callback.asBinder()); local
64 if (cb != null) {
65 cb.callback.asBinder().unlinkToDeath(cb, 0);
75 for (Callback cb : callbacks.values()) {
76 cb.callback.asBinder().unlinkToDeath(cb, 0)
    [all...]
  /external/wpa_supplicant_8/src/crypto/
aes-gcm.c 146 u8 cb[AES_BLOCK_SIZE], tmp[AES_BLOCK_SIZE]; local
155 os_memcpy(cb, icb, AES_BLOCK_SIZE);
158 aes_encrypt(aes, cb, ypos);
162 inc32(cb);
168 aes_encrypt(aes, cb, tmp);
  /external/wpa_supplicant_8/src/wps/
http_client.c 28 void (*cb)(void *ctx, struct http_client *c, member in struct:http_client
40 c->cb(c->cb_ctx, c, HTTP_CLIENT_TIMEOUT);
63 c->cb(c->cb_ctx, c, HTTP_CLIENT_OK);
69 c->cb(c->cb_ctx, c, HTTP_CLIENT_INVALID_REPLY);
72 c->cb(c->cb_ctx, c, HTTP_CLIENT_INVALID_REPLY);
75 c->cb(c->cb_ctx, c, HTTP_CLIENT_TIMEOUT);
78 c->cb(c->cb_ctx, c, HTTP_CLIENT_FAILED);
101 c->cb(c->cb_ctx, c, HTTP_CLIENT_FAILED);
124 c->cb(c->cb_ctx, c, HTTP_CLIENT_FAILED);
132 void (*cb)(void *ctx
    [all...]
http_server.c 30 void (*cb)(void *ctx, struct http_request *req); member in struct:http_server
51 srv->cb(srv->cb_ctx, req);
229 void (*cb)(void *ctx,
239 srv->cb = cb;
  /external/wpa_supplicant_8/wpa_supplicant/tests/
test_wpa.c 271 struct wpa_auth_callbacks cb; local
283 os_memset(&cb, 0, sizeof(cb));
284 cb.ctx = wpa;
285 cb.logger = auth_logger;
286 cb.send_eapol = auth_send_eapol;
287 cb.get_psk = auth_get_psk;
289 wpa->auth_group = wpa_init(wpa->auth_addr, &conf, &cb);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
h264bsdWriteMacroblock.s 29 cb RN 4 label
95 LDR cb, [image, #0x10]
118 VLD1 {qRow0, qRow1}, [data]! ;cb rows 0,1,2,3
120 VLD1 {qRow2, qRow3}, [data]! ;cb rows 4,5,6,7
126 VST1 {dRow0}, [cb@64], cwidth
129 VST1 {dRow1}, [cb@64], cwidth
132 VST1 {dRow2}, [cb@64], cwidth
135 VST1 {dRow3}, [cb@64], cwidth
138 VST1 {dRow4}, [cb@64], cwidth
141 VST1 {dRow5}, [cb@64], cwidt
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
h264bsdWriteMacroblock.S 31 #define cb r4 define
97 LDR cb, [image, #0x10]
120 VLD1 {qRow0, qRow1}, [data]! ;//cb rows 0,1,2,3
122 VLD1 {qRow2, qRow3}, [data]! ;//cb rows 4,5,6,7
128 VST1 {dRow0}, [cb,:64], cwidth
131 VST1 {dRow1}, [cb,:64], cwidth
134 VST1 {dRow2}, [cb,:64], cwidth
137 VST1 {dRow3}, [cb,:64], cwidth
140 VST1 {dRow4}, [cb,:64], cwidth
143 VST1 {dRow5}, [cb,:64], cwidt
    [all...]
  /frameworks/base/core/java/android/os/
RemoteCallbackList.java 114 Callback cb = new Callback(callback, cookie); local
115 binder.linkToDeath(cb, 0);
116 mCallbacks.put(binder, cb);
143 Callback cb = mCallbacks.remove(callback.asBinder()); local
144 if (cb != null) {
145 cb.mCallback.asBinder().unlinkToDeath(cb, 0);
162 for (Callback cb : mCallbacks.values()) {
163 cb.mCallback.asBinder().unlinkToDeath(cb, 0)
    [all...]
  /frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.cpp 75 JSAMPROW cb[8]; local
79 planes[1] = cb;
104 cb[i/2] = uRows + offset;
132 // cb and cr are horizontally downsampled and vertically downsampled as well.
151 JSAMPROW cb[16]; local
155 planes[1] = cb;
178 cb[i] = uRows + offset;
209 // cb and cr are horizontally downsampled and vertically downsampled as well.

Completed in 1443 milliseconds

1 2 34 5 6 7 8 91011>>