/sdk/emulator/opengl/host/libs/libOpenglRender/ |
ColorBuffer.cpp | 55 ColorBuffer *cb = new ColorBuffer(); local 58 s_gl.glGenTextures(1, &cb->m_tex); 59 s_gl.glBindTexture(GL_TEXTURE_2D, cb->m_tex); 79 s_gl.glGenTextures(1, &cb->m_blitTex); 80 s_gl.glBindTexture(GL_TEXTURE_2D, cb->m_blitTex); 91 cb->m_width = p_width; 92 cb->m_height = p_height; 93 cb->m_internalFormat = texInternalFormat; 96 cb->m_eglImage = s_egl.eglCreateImageKHR( 100 (EGLClientBuffer)SafePointerFromUInt(cb->m_tex) [all...] |
/system/core/init/ |
ueventd.c | 80 union selinux_callback cb; local 81 cb.func_log = log_callback; 82 selinux_set_callback(SELINUX_CB_LOG, cb);
|
/bootable/recovery/minui/ |
events.c | 38 ev_callback cb; member in struct:fd_info 96 ev_fdinfo[ev_count].cb = input_cb; 113 int ev_add_fd(int fd, ev_callback cb, void *data) 118 if (ev_misc_count == MAX_MISC_FDS || cb == NULL) 126 ev_fdinfo[ev_count].cb = cb; 165 ev_callback cb = fdi->cb; local 166 if (cb) 167 cb(fdi->fd, polledevents[n].events, fdi->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_org/android_webview/java/src/org/chromium/android_webview/ |
AwContentViewClient.java | 28 WebChromeClient.CustomViewCallback cb = new WebChromeClient.CustomViewCallback() { local 38 onShowCustomViewLegacy(view, cb); 40 onShowCustomView(view, cb); 45 private void onShowCustomViewLegacy(View view, WebChromeClient.CustomViewCallback cb) { 46 mAwContentsClient.onShowCustomView(view, cb); 49 private void onShowCustomView(View view, WebChromeClient.CustomViewCallback cb) { 66 mAwContentsClient.onShowCustomView(viewGroup, cb);
|
/external/chromium_org/base/ |
callback_list.h | 38 // RegisterCallback(const OnFooCallback& cb) { 39 // return callback_list_.Add(cb); 111 scoped_ptr<Subscription> Add(const CallbackType& cb) WARN_UNUSED_RESULT { 112 DCHECK(!cb.is_null()); 114 new Subscription(this, callbacks_.insert(callbacks_.end(), cb))); 155 CallbackType* cb = NULL; local 157 cb = &(*list_iter_); 160 return cb; 222 CallbackType* cb; local 223 while ((cb = it.GetNext()) != NULL) 243 CallbackType* cb; local 265 CallbackType* cb; local 288 CallbackType* cb; local 312 CallbackType* cb; local 337 CallbackType* cb; local 365 CallbackType* cb; local 394 CallbackType* cb; local [all...] |
callback_unittest.cc | 130 cb(Bind(&TestForReentrancy::AssertCBIsNull, Unretained(this))) { 133 ASSERT_TRUE(cb.is_null()); 137 Closure cb; member in struct:base::__anon6801::TestForReentrancy 142 ASSERT_FALSE(tfr.cb.is_null()); 144 ResetAndReturn(&tfr.cb).Run(); 145 ASSERT_TRUE(tfr.cb.is_null());
|
/external/chromium_org/chrome/browser/resources/cryptotoken/ |
gnubbies.js | 81 * @param {function(number, Array.<llGnubbyDeviceId>)} cb Called back with the 84 Gnubbies.prototype.enumerate = function(cb) { 132 var cb = self.pendingEnumerate.shift(); 133 cb(-llGnubby.OK, existingDeviceIds); 138 this.pendingEnumerate.push(cb); 142 cb(-llGnubby.OK, []); 200 * @param {function(number, llGnubby=)} cb Called back with the result of 203 Gnubbies.prototype.addClient = function(which, who, cb) { 208 function opened(gnubby, who, cb) { 212 if (cb) { cb(-llGnubby.NODEVICE); [all...] |
/external/chromium_org/content/browser/renderer_host/media/ |
media_stream_ui_proxy.cc | 179 ResponseCallback cb = response_callback_; local 181 cb.Run(devices, result); 188 base::Closure cb = stop_callback_; local 190 cb.Run();
|
/external/chromium_org/content/browser/renderer_host/p2p/ |
socket_host_tcp_server_unittest.cc | 42 net::CompletionCallback cb = accept_callback_; local 44 cb.Run(net::OK);
|
socket_host_udp_unittest.cc | 110 net::CompletionCallback cb = recv_callback_; local 113 cb.Run(size);
|
/external/chromium_org/media/cast/transport/pacing/ |
paced_sender.cc | 190 base::Closure cb = base::Bind(&PacedSender::SendStoredPackets, local 195 cb, 216 if (!transport_->SendPacket(packet, cb)) {
|
/external/chromium_org/media/cdm/ppapi/ |
cdm_file_io_impl.cc | 41 // Posts a task to run |cb| on the main thread. The task is posted even if the 43 static void PostOnMain(pp::CompletionCallback cb) { 44 pp::Module::Get()->core()->CallOnMainThread(0, cb, PP_OK); 237 pp::CompletionCallbackWithOutput<pp::FileSystem> cb = local 243 CHECK_PP_OK_COMPLETIONPENDING(isolated_file_system_.Open(cb), OPEN_ERROR); 271 pp::CompletionCallback cb = local 273 CHECK_PP_OK_COMPLETIONPENDING(file_io_.Open(file_ref_, file_open_flag, cb), 296 pp::CompletionCallback cb = local 299 file_io_.Read(io_offset_, &io_buffer_[0], io_buffer_.size(), cb), 346 pp::CompletionCallback cb local [all...] |
/external/chromium_org/media/formats/webm/ |
webm_parser_unittest.cc | 40 ClusterBuilder cb; local 41 cb.SetClusterTimecode(0); 45 cb.AddSimpleBlock(0, i, 0, data, sizeof(data)); 48 return cb.Finish();
|
/external/chromium_org/net/disk_cache/ |
disk_cache_test_base.cc | 87 net::TestCompletionCallback cb; local 88 int rv = cache_impl_->FlushQueueForTest(cb.callback()); 89 ASSERT_EQ(net::OK, cb.GetResult(rv)); 117 net::TestCompletionCallback cb; local 118 int rv = cache_->OpenEntry(key, entry, cb.callback()); 119 return cb.GetResult(rv); 124 net::TestCompletionCallback cb; local 125 int rv = cache_->CreateEntry(key, entry, cb.callback()); 126 return cb.GetResult(rv); 130 net::TestCompletionCallback cb; local 136 net::TestCompletionCallback cb; local 143 net::TestCompletionCallback cb; local 149 net::TestCompletionCallback cb; local 156 net::TestCompletionCallback cb; local 176 net::TestCompletionCallback cb; local 183 net::TestCompletionCallback cb; local 191 net::TestCompletionCallback cb; local 199 net::TestCompletionCallback cb; local 207 net::TestCompletionCallback cb; local 290 net::TestCompletionCallback cb; local 319 net::TestCompletionCallback cb; local [all...] |
/external/chromium_org/ppapi/proxy/ |
file_system_resource_unittest.cc | 103 MockCompletionCallback cb; local 107 PP_MakeCompletionCallback(&MockCompletionCallback::Callback, &cb)); 120 ASSERT_TRUE(cb.called()); 121 ASSERT_EQ(PP_OK, cb.result()); 129 MockCompletionCallback cb; local 134 PP_MakeCompletionCallback(&MockCompletionCallback::Callback, &cb)); 166 MockCompletionCallback cb; local 170 PP_MakeCompletionCallback(&MockCompletionCallback::Callback, &cb)); 181 ASSERT_TRUE(cb.called()); 182 ASSERT_EQ(PP_ERROR_FAILED, cb.result()) 190 MockCompletionCallback cb; local [all...] |
/external/chromium_org/third_party/hwcplus/include/system/ |
graphics.h | 102 * by (W/2) x (H/2) Cr and Cb planes. 255 * @y, @cb, and @cr point to the first byte of their respective planes. 270 void *cb; member in struct:android_ycbcr
|
/external/chromium_org/third_party/openssl/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/chromium_org/third_party/openssl/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/chromium_org/third_party/openssl/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/chromium_org/third_party/openssl/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/chromium_org/third_party/openssl/openssl/crypto/rc4/ |
rc4speed.c | 185 long ca,cb,cc; local
|
/external/chromium_org/third_party/openssl/openssl/crypto/rsa/ |
rsa_pmeth.c | 660 BN_GENCB *pcb, cb; local 673 pcb = &cb;
|