/external/openssl/crypto/asn1/ |
asn1t.h | 172 #define ASN1_NDEF_SEQUENCE_cb(tname, cb) \ 173 ASN1_SEQUENCE_cb(tname, cb) 175 #define ASN1_SEQUENCE_cb(tname, cb) \ 176 static const ASN1_AUX tname##_aux = {NULL, 0, 0, 0, cb, 0}; \ 183 #define ASN1_SEQUENCE_ref(tname, cb, lck) \ 184 static const ASN1_AUX tname##_aux = {NULL, ASN1_AFLG_REFCOUNT, offsetof(tname, references), lck, cb, 0}; \ 187 #define ASN1_SEQUENCE_enc(tname, enc, cb) \ 188 static const ASN1_AUX tname##_aux = {NULL, ASN1_AFLG_ENCODING, 0, 0, cb, offsetof(tname, enc)}; \ 259 #define ASN1_CHOICE_cb(tname, cb) \ 260 static const ASN1_AUX tname##_aux = {NULL, 0, 0, 0, cb, 0}; [all...] |
/external/openssl/crypto/pem/ |
pvkfmt.c | 727 pem_password_cb *cb, void *u) 740 if (cb) 741 inlen=cb(psbuf,PEM_BUFSIZE,0,u); 805 EVP_PKEY *b2i_PVK_bio(BIO *in, pem_password_cb *cb, void *u) 834 ret = do_PVK_body(&p, saltlen, keylen, cb, u); 848 pem_password_cb *cb, void *u) 899 if (cb) 900 inlen=cb(psbuf,PEM_BUFSIZE,1,u); 931 pem_password_cb *cb, void *u) 935 outlen = i2b_PVK(&tmp, pk, enclevel, cb, u) [all...] |
/external/openssl/include/openssl/ |
asn1t.h | 172 #define ASN1_NDEF_SEQUENCE_cb(tname, cb) \ 173 ASN1_SEQUENCE_cb(tname, cb) 175 #define ASN1_SEQUENCE_cb(tname, cb) \ 176 static const ASN1_AUX tname##_aux = {NULL, 0, 0, 0, cb, 0}; \ 183 #define ASN1_SEQUENCE_ref(tname, cb, lck) \ 184 static const ASN1_AUX tname##_aux = {NULL, ASN1_AFLG_REFCOUNT, offsetof(tname, references), lck, cb, 0}; \ 187 #define ASN1_SEQUENCE_enc(tname, enc, cb) \ 188 static const ASN1_AUX tname##_aux = {NULL, ASN1_AFLG_ENCODING, 0, 0, cb, offsetof(tname, enc)}; \ 259 #define ASN1_CHOICE_cb(tname, cb) \ 260 static const ASN1_AUX tname##_aux = {NULL, 0, 0, 0, cb, 0}; [all...] |
/external/openssl/ssl/ |
s3_pkt.c | 976 void (*cb)(const SSL *ssl,int type2,int val)=NULL; [all...] |
tls_srp.c | 483 int SSL_CTX_set_srp_verify_param_callback(SSL_CTX *ctx, int (*cb)(SSL *,void *)) 486 (void (*)(void))cb); 495 int (*cb)(SSL *,int *,void *)) 498 (void (*)(void))cb); 501 int SSL_CTX_set_srp_client_pwd_callback(SSL_CTX *ctx, char *(*cb)(SSL *,void *)) 504 (void (*)(void))cb);
|
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/ |
AndroidCamera2AgentImpl.java | [all...] |
/frameworks/base/media/java/android/media/ |
MediaFocusControl.java | 516 private void removeFocusStackEntryForClient(IBinder cb) { 519 mFocusStack.peek().hasSameBinder(cb); 525 if(fr.hasSameBinder(cb)) { 526 Log.i(TAG, "AudioFocus removeFocusStackEntry(): removing entry for " + cb); 558 AudioFocusDeathHandler(IBinder cb) { 559 mCb = cb; 585 protected int requestAudioFocus(int mainStreamType, int focusChangeHint, IBinder cb, 589 if (!cb.pingBinder()) { 607 AudioFocusDeathHandler afdh = new AudioFocusDeathHandler(cb); 609 cb.linkToDeath(afdh, 0) [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_processing/test/ |
audio_processing_unittest.cc | 68 void ConvertToFloat(const int16_t* int_data, ChannelBuffer<float>* cb) { 69 ChannelBuffer<int16_t> cb_int(cb->samples_per_channel(), 70 cb->num_channels()); 72 cb->samples_per_channel(), 73 cb->num_channels(), 76 cb->samples_per_channel() * cb->num_channels(), 77 cb->data()); 80 void ConvertToFloat(const AudioFrame& frame, ChannelBuffer<float>* cb) { 81 ConvertToFloat(frame.data_, cb); [all...] |
/external/chromium_org/ppapi/examples/video_decode/ |
video_decode_dev.cc | 333 pp::CompletionCallback cb = callback_factory_.NewCallback( local 335 decoder_->Flush(cb); 350 pp::CompletionCallback cb = local 355 decoder_->Decode(bitstream_buffer, cb); 455 pp::CompletionCallback cb = local 459 assert(context_->SwapBuffers(cb) == PP_OK_COMPLETIONPENDING);
|
/external/chromium_org/third_party/openssl/openssl/ssl/ |
tls_srp.c | 483 int SSL_CTX_set_srp_verify_param_callback(SSL_CTX *ctx, int (*cb)(SSL *,void *)) 486 (void (*)(void))cb); 495 int (*cb)(SSL *,int *,void *)) 498 (void (*)(void))cb); 501 int SSL_CTX_set_srp_client_pwd_callback(SSL_CTX *ctx, char *(*cb)(SSL *,void *)) 504 (void (*)(void))cb);
|
/external/lldb/include/lldb/Utility/ |
SharingPtr.h | 482 LoggingSharingPtr(Callback cb, void* baton) 483 : cb_(cb), baton_(baton) 494 LoggingSharingPtr(Y* p, Callback cb, void* baton) 495 : base(p), cb_(cb), baton_(baton) 543 void SetCallback(Callback cb, void* baton) 545 cb_ = cb;
|
/external/ltrace/ |
prototype.c | 96 enum callback_status (*cb)(struct prototype *, struct param *, void *); member in struct:each_param_data 104 return (cb_data->cb)(cb_data->proto, param, cb_data->data); 109 enum callback_status (*cb)(struct prototype *, 113 struct each_param_data cb_data = { proto, cb, data }; 178 enum callback_status (*cb)(struct protolib **, void *), void *data) 182 start_after, cb, data);
|
/frameworks/base/core/java/android/widget/ |
ActionMenuPresenter.java | 733 final Callback cb = getCallback(); local 734 return cb != null ? cb.onOpenSubMenu(subMenu) : false; 742 final Callback cb = getCallback(); local 743 if (cb != null) { 744 cb.onCloseMenu(menu, allMenusAreClosing);
|
/frameworks/base/core/java/com/android/internal/widget/ |
ActionBarOverlayLayout.java | 195 public void setActionBarVisibilityCallback(ActionBarVisibilityCallback cb) { 196 mActionBarVisibilityCallback = cb; 662 public void setWindowCallback(Window.Callback cb) { 664 mDecorToolbar.setWindowCallback(cb); 790 public void setMenu(Menu menu, MenuPresenter.Callback cb) { 792 mDecorToolbar.setMenu(menu, cb);
|
/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/ |
LocalRenderer.java | 663 SurfaceHolder.Callback cb = new SurfaceHolder.Callback() { local 680 mHolderCB = cb; 681 holder.addCallback(cb); 702 SurfaceHolder.Callback cb = mHolderCB; local 706 if (holder != null && cb != null) { 707 holder.removeCallback(cb);
|
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/ |
ActionBarOverlayLayout.java | 195 public void setActionBarVisibilityCallback(ActionBarVisibilityCallback cb) { 196 mActionBarVisibilityCallback = cb; 671 public void setWindowCallback(WindowCallback cb) { 673 mDecorToolbar.setWindowCallback(cb); 776 public void setMenu(Menu menu, MenuPresenter.Callback cb) { 778 mDecorToolbar.setMenu(menu, cb);
|
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
ActionMenuPresenter.java | 726 final Callback cb = getCallback(); local 727 return cb != null ? cb.onOpenSubMenu(subMenu) : false; 735 final Callback cb = getCallback(); local 736 if (cb != null) { 737 cb.onCloseMenu(menu, allMenusAreClosing);
|
/development/tools/yuv420sp2rgb/ |
yuv420sp2rgb.c | 28 U (Cb) Sample Period 2 2 57 rgb_cb cb) 76 cb(nB, nB, nB, &ctx); 113 cb(nR, nG, nB, &ctx);
|
/external/chromium_org/content/renderer/devtools/ |
devtools_agent.cc | 158 TraceEventCallback cb) { 161 reinterpret_cast<base::subtle::AtomicWord>(cb)); 162 if (!!cb) {
|
/external/chromium_org/gpu/command_buffer/tests/ |
gl_readback_unittest.cc | 32 static void WaitForQueryCallback(int q, base::Closure cb) { 36 cb.Run(); 40 base::Bind(&WaitForQueryCallback, q, cb),
|
/external/chromium_org/media/base/ |
text_renderer.cc | 97 void TextRenderer::Stop(const base::Closure& cb) { 99 DCHECK(!cb.is_null()); 106 stop_cb_ = cb;
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/ |
builtin-help.c | 242 static int perf_help_config(const char *var, const char *value, void *cb) 244 enum help_format *help_formatp = cb; 263 return perf_default_config(var, value, cb);
|
/external/qemu/block/ |
qcow2.c | 368 static int qcow_schedule_bh(QEMUBHFunc *cb, QCowAIOCB *acb) 373 acb->bh = qemu_bh_new(cb, acb); 488 acb->common.cb(acb->common.opaque, ret); 494 BlockDriverCompletionFunc *cb, void *opaque, int is_write) 498 acb = qemu_aio_get(&qcow_aio_pool, bs, cb, opaque); 521 BlockDriverCompletionFunc *cb, void *opaque) 525 acb = qcow_aio_setup(bs, sector_num, qiov, nb_sectors, cb, opaque, 0); 640 acb->common.cb(acb->common.opaque, ret); 646 BlockDriverCompletionFunc *cb, void *opaque) 653 acb = qcow_aio_setup(bs, sector_num, qiov, nb_sectors, cb, opaque, 1) [all...] |
/frameworks/av/media/libstagefright/omx/ |
SoftVideoEncoderOMXComponent.cpp | 51 const uint8_t *srcU = (const uint8_t *)ycbcr->cb; 262 ycbcr.cb = (uint8_t *)ycbcr.cr + (srcStride >> 1) * (srcVStride >> 1); 272 ycbcr.cb = (uint8_t *)ycbcr.cr + 1;
|
/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);
|