/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/ |
i915_state.c | 670 struct pipe_constant_buffer *cb) 673 struct pipe_resource *buf = cb ? cb->buffer : NULL; 681 if (cb && cb->user_buffer) { 682 buf = i915_user_buffer_create(pipe->screen, (void *) cb->user_buffer, 683 cb->buffer_size, 718 if (cb && cb->user_buffer) { [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/bn/ |
bn.h | 364 } cb; member in struct:bn_gencb_st 367 int BN_GENCB_call(BN_GENCB *cb, int a, int b); 373 tmp_gencb->cb.cb_1 = (callback); } 379 tmp_gencb->cb.cb_2 = (callback); } 556 const BIGNUM *rem, BN_GENCB *cb); 557 int BN_is_prime_ex(const BIGNUM *p,int nchecks, BN_CTX *ctx, BN_GENCB *cb); 559 int do_trial_division, BN_GENCB *cb); 565 const BIGNUM *e, BN_CTX *ctx, BN_GENCB *cb); 570 BN_GENCB *cb); [all...] |
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
bn.h | 364 } cb; member in struct:bn_gencb_st 367 int BN_GENCB_call(BN_GENCB *cb, int a, int b); 373 tmp_gencb->cb.cb_1 = (callback); } 379 tmp_gencb->cb.cb_2 = (callback); } 556 const BIGNUM *rem, BN_GENCB *cb); 557 int BN_is_prime_ex(const BIGNUM *p,int nchecks, BN_CTX *ctx, BN_GENCB *cb); 559 int do_trial_division, BN_GENCB *cb); 565 const BIGNUM *e, BN_CTX *ctx, BN_GENCB *cb); 570 BN_GENCB *cb); [all...] |
dsa.h | 151 BN_GENCB *cb); 239 int *counter_ret, unsigned long *h_ret, BN_GENCB *cb);
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
ProgramState.h | 313 template <typename CB> CB scanReachableSymbols(SVal val) const; 314 template <typename CB> CB scanReachableSymbols(const SVal *beg, 317 template <typename CB> CB 775 template <typename CB> 776 CB ProgramState::scanReachableSymbols(SVal val) const { 777 CB cb(this) [all...] |
/external/mesa3d/src/gallium/drivers/i915/ |
i915_state.c | 670 struct pipe_constant_buffer *cb) 673 struct pipe_resource *buf = cb ? cb->buffer : NULL; 681 if (cb && cb->user_buffer) { 682 buf = i915_user_buffer_create(pipe->screen, (void *) cb->user_buffer, 683 cb->buffer_size, 718 if (cb && cb->user_buffer) { [all...] |
/external/openssl/crypto/bn/ |
bn.h | 364 } cb; member in struct:bn_gencb_st 367 int BN_GENCB_call(BN_GENCB *cb, int a, int b); 373 tmp_gencb->cb.cb_1 = (callback); } 379 tmp_gencb->cb.cb_2 = (callback); } 556 const BIGNUM *rem, BN_GENCB *cb); 557 int BN_is_prime_ex(const BIGNUM *p,int nchecks, BN_CTX *ctx, BN_GENCB *cb); 559 int do_trial_division, BN_GENCB *cb); 565 const BIGNUM *e, BN_CTX *ctx, BN_GENCB *cb); 570 BN_GENCB *cb); [all...] |
/external/openssl/include/openssl/ |
bn.h | 364 } cb; member in struct:bn_gencb_st 367 int BN_GENCB_call(BN_GENCB *cb, int a, int b); 373 tmp_gencb->cb.cb_1 = (callback); } 379 tmp_gencb->cb.cb_2 = (callback); } 556 const BIGNUM *rem, BN_GENCB *cb); 557 int BN_is_prime_ex(const BIGNUM *p,int nchecks, BN_CTX *ctx, BN_GENCB *cb); 559 int do_trial_division, BN_GENCB *cb); 565 const BIGNUM *e, BN_CTX *ctx, BN_GENCB *cb); 570 BN_GENCB *cb); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_zlib.py | 261 cb = combuf 262 while cb: 263 #max_length = 1 + len(cb)//10 264 chunk = dco.decompress(cb, dcx) 268 cb = dco.unconsumed_tail 286 cb = combuf 287 while cb: 288 max_length = 1 + len(cb)//10 289 chunk = dco.decompress(cb, max_length) 293 cb = dco.unconsumed_tai [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_zlib.py | 261 cb = combuf 262 while cb: 263 #max_length = 1 + len(cb)//10 264 chunk = dco.decompress(cb, dcx) 268 cb = dco.unconsumed_tail 286 cb = combuf 287 while cb: 288 max_length = 1 + len(cb)//10 289 chunk = dco.decompress(cb, max_length) 293 cb = dco.unconsumed_tai [all...] |
/external/chromium_org/chrome/renderer/resources/extensions/ |
event.js | 259 Event.prototype.addListener = function(cb, filters) { 276 var listener = {callback: cb, filters: filters}; 297 Event.prototype.removeListener = function(cb) { 301 var idx = this.findListener_(cb); 323 Event.prototype.hasListener = function(cb) { 326 return this.findListener_(cb) > -1; 343 Event.prototype.findListener_ = function(cb) { 345 if (this.listeners_[i].callback == cb) { 484 Event.prototype.getRules = function(ruleIdentifiers, cb) { 490 validate([this.webViewInstanceId_, ruleIdentifiers, cb], [all...] |
/frameworks/base/media/java/android/media/ |
MediaFocusControl.java | 558 private void removeFocusStackEntryForClient(IBinder cb) { 561 mFocusStack.peek().hasSameBinder(cb); 567 if(fr.hasSameBinder(cb)) { 568 Log.i(TAG, "AudioFocus removeFocusStackEntry(): removing entry for " + cb); 604 AudioFocusDeathHandler(IBinder cb) { 605 mCb = cb; 631 protected int requestAudioFocus(int mainStreamType, int focusChangeHint, IBinder cb, 635 if (!cb.pingBinder()) { 653 AudioFocusDeathHandler afdh = new AudioFocusDeathHandler(cb); 655 cb.linkToDeath(afdh, 0) [all...] |
/external/chromium_org/third_party/openssl/openssl/ssl/ |
d1_clnt.c | 151 void (*cb)(const SSL *ssl,int type,int val)=NULL; 164 cb=s->info_callback; 166 cb=s->ctx->info_callback; 209 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1); 719 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_DONE,1); 743 if ((cb != NULL) && (s->state != state)) 747 cb(s,SSL_CB_CONNECT_LOOP,1); 766 if (cb != NULL [all...] |
d1_srvr.c | 149 void (*cb)(const SSL *ssl,int type,int val)=NULL; 164 cb=s->info_callback; 166 cb=s->ctx->info_callback; 218 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1); 792 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_DONE,1); 821 if ((cb != NULL) && (s->state != state)) 825 cb(s,SSL_CB_ACCEPT_LOOP,1); 843 if (cb != NULL [all...] |
/external/openssl/ssl/ |
d1_clnt.c | 151 void (*cb)(const SSL *ssl,int type,int val)=NULL; 164 cb=s->info_callback; 166 cb=s->ctx->info_callback; 209 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1); 719 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_DONE,1); 743 if ((cb != NULL) && (s->state != state)) 747 cb(s,SSL_CB_CONNECT_LOOP,1); 766 if (cb != NULL [all...] |
d1_srvr.c | 149 void (*cb)(const SSL *ssl,int type,int val)=NULL; 164 cb=s->info_callback; 166 cb=s->ctx->info_callback; 218 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1); 792 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_DONE,1); 821 if ((cb != NULL) && (s->state != state)) 825 cb(s,SSL_CB_ACCEPT_LOOP,1); 843 if (cb != NULL [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/location/ |
LocationVerifier.java | 198 public LocationVerifier(PassFailLog cb, LocationManager locationManager, 206 mCb = cb;
|
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/ |
Sasl4Test.java | 311 TextOutputCallback[] cb = { new TextOutputCallback( local 314 hnd.handle(cb);
|
/external/chromium_org/content/browser/download/ |
save_package.h | 95 // |cb| will be called when the DownloadItem is created, before data is 97 bool Init(const SavePackageDownloadCreatedCallback& cb); 205 const SavePackageDownloadCreatedCallback& cb);
|
/external/chromium_org/content/browser/renderer_host/p2p/ |
socket_host_test_utils.cc | 42 net::CompletionCallback cb = read_callback_; local 44 cb.Run(result);
|
/external/chromium_org/content/renderer/media/ |
rtc_video_decoder_factory_tv.cc | 197 const media::PipelineStatusCB& cb, 200 init_cb_ = media::BindToLoop(base::MessageLoopProxy::current(), cb);
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/ |
cso_cache.c | 316 cso_sanitize_callback cb, 319 sc->sanitize_cb = cb;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_context.h | 210 struct pipe_resource *cb[PIPE_SHADER_TYPES]; member in struct:svga_state 278 float cb[PIPE_SHADER_TYPES][SVGA3D_CONSTREG_MAX][4]; member in struct:svga_hw_draw_state
|
/external/chromium_org/third_party/openssl/openssl/crypto/dsa/ |
dsa.h | 151 BN_GENCB *cb); 239 int *counter_ret, unsigned long *h_ret, BN_GENCB *cb);
|
dsa_pmeth.c | 245 BN_GENCB *pcb, cb; local 249 pcb = &cb;
|