HomeSort by relevance Sort by last modified time
    Searched defs:cb (Results 151 - 175 of 733) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/compiler-rt/lib/asan/tests/
asan_noinst_test.cc 231 typedef void (*CB)(uptr p);
232 CB cb[2][5] = { local
254 CB call = cb[is_write][size_log];
  /external/glide/library/src/main/java/com/bumptech/glide/
ListPreloader.java 178 public void getSize(SizeReadyCallback cb) {
179 cb.onSizeReady(photoWidth, photoHeight);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifFrameManager.java 94 public void getNextFrame(FrameCallback cb) {
101 next = new DelayTarget(cb, targetTime);
128 private FrameCallback cb; field in class:GifFrameManager.DelayTarget
132 public DelayTarget(FrameCallback cb, long targetTime) {
134 this.cb = cb;
153 cb.onFrameRead(resource);
  /external/libnl/lib/
handlers.c 14 * @defgroup cb Callbacks/Customization
20 * struct nl_cb *cb = nl_cb_alloc(NL_CB_VERBOSE);
23 * nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, my_func, NULL);
28 * nl_cb_err(cb, NL_CB_VERBOSE, NULL, file);
208 struct nl_cb *cb; local
213 cb = calloc(1, sizeof(*cb));
214 if (!cb)
217 cb->cb_refcnt = 1;
220 nl_cb_set(cb, i, kind, NULL, NULL)
235 struct nl_cb *cb; local
    [all...]
nl.c 207 struct nl_cb *cb; local
212 cb = sk->s_cb;
213 if (cb->cb_set[NL_CB_MSG_OUT])
214 if (nl_cb_call(cb, NL_CB_MSG_OUT, msg) != NL_OK)
325 struct nl_cb *cb = sk->s_cb; local
329 if (cb->cb_send_ow)
330 return cb->cb_send_ow(sk, msg);
490 #define NL_CB_CALL(cb, type, msg) \
492 err = nl_cb_call(cb, type, msg); \
506 static int recvmsgs(struct nl_sock *sk, struct nl_cb *cb)
737 struct nl_cb *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 662 BN_GENCB *pcb, cb; local
675 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...]
  /external/wpa_supplicant_8/wpa_supplicant/tests/
test_wpa.c 267 struct wpa_auth_callbacks cb; local
279 os_memset(&cb, 0, sizeof(cb));
280 cb.ctx = wpa;
281 cb.logger = auth_logger;
282 cb.send_eapol = auth_send_eapol;
283 cb.get_psk = auth_get_psk;
285 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);
163 Callback cb = mCallbacks.valueAt(cbi); local
164 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.
  /frameworks/base/core/jni/
android_os_SELinux.cpp 466 union selinux_callback cb; local
467 cb.func_log = log_callback;
468 selinux_set_callback(SELINUX_CB_LOG, cb);
  /frameworks/base/native/android/
storage_manager.cpp 52 , cb(_cb)
57 AStorageManager_obbCallbackFunc cb; member in class:ObbCallback
74 ObbCallback* cb = new ObbCallback(getNextNonce(), func, data); local
77 mCallbacks.push(cb);
79 return cb;
111 ObbCallback* cb = mCallbacks.editItemAt(i); local
112 if (cb->nonce == nonce) {
113 target = cb;
121 target->cb(filename, state, target->data);
137 ObbCallback* cb = registerObbCallback(func, data) local
145 ObbCallback* cb = registerObbCallback(func, data); local
    [all...]

Completed in 3234 milliseconds

1 2 3 4 5 67 8 91011>>