HomeSort by relevance Sort by last modified time
    Searched refs:cb (Results 826 - 850 of 1852) sorted by null

<<31323334353637383940>>

  /external/ltrace/
vect.c 172 enum callback_status (*cb)(void *, void *), void *data)
179 switch ((*cb)(slt, data)) {
200 enum callback_status (*cb)(const void *, void *), void *data)
203 (void *)cb, data);
  /external/mesa3d/src/gallium/auxiliary/cso_cache/
cso_cache.h 152 cso_sanitize_callback cb,
  /external/qemu/android/
async-socket-connector.c 293 asc_event_cb cb,
299 if (cb == NULL) {
310 connector->on_connected_cb = cb;
331 cb(cb_opaque, connector, ASIO_STATE_FAILED);
  /external/qemu/include/monitor/
monitor.h 75 Monitor* monitor_fake_new(void* opaque, MonitorFakeFunc cb);
  /external/wpa_supplicant_8/src/tls/
tlsv1_client.h 51 tlsv1_client_session_ticket_cb cb,
  /external/wpa_supplicant_8/src/utils/
http-utils.h 58 int (*cb)(void *ctx, struct http_cert *cert),
  /frameworks/base/media/java/android/media/
AudioSystem.java 185 * @param cb the callback to run
187 public static void setErrorCallback(ErrorCallback cb)
190 mErrorCallback = cb;
191 if (cb != null) {
192 cb.onError(checkAudioFlinger());
MediaRouter.java 2643 public final Callback cb; field in class:MediaRouter.CallbackInfo
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetDecoder2Test.java 259 CharBuffer cb = decoder.decode(ByteBuffer.wrap(bytes)); local
260 fail("No exception thrown on " + Arrays.toString(bytes) + " '" + cb + "'");
272 CharBuffer cb = decoder.decode(bb); local
273 fail("No exception thrown on " + Arrays.toString(bytes) + " '" + cb + "'");
  /libcore/luni/src/main/java/java/nio/charset/
CharsetEncoder.java 183 CharBuffer cb; local
185 cb = ((CharBuffer) sequence).duplicate();
187 cb = CharBuffer.wrap(sequence);
202 encode(cb);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
EmailServiceProxy.java 110 * @param cb The {@link IEmailServiceCallback} to use for this operation.
117 public void loadAttachment(final IEmailServiceCallback cb, final long accountId,
124 mService.loadAttachment(cb, accountId, attachmentId, background);
128 if (cb != null) {
129 cb.loadAttachmentStatus(-1, attachmentId,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/pulse/
browser.h 86 void pa_browser_set_callback(pa_browser *z, pa_browse_cb_t cb, void *userdata);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/pulse/
browser.h 86 void pa_browser_set_callback(pa_browser *z, pa_browse_cb_t cb, void *userdata);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
delayimp.h 49 DWORD cb; member in struct:DelayLoadInfo
  /device/moto/shamu/camera/QCamera2/HAL/
QCamera2HWICallbacks.cpp 86 CDBG_HIGH("%s: [ZSL Retro] Frame CB Unlock : %d, is AEC Locked: %d",
1988 qcamera_callback_argm_t *cb = local
    [all...]
  /external/chromium_org/chrome/browser/net/
network_stats_unittest.cc 119 net::TestCompletionCallback cb; local
129 cb.callback()));
132 int rv = cb.WaitForResult();
220 net::TestCompletionCallback cb; local
230 cb.callback()));
237 int rv = cb.WaitForResult();
241 rv = cb.WaitForResult();
  /external/compiler-rt/test/tsan/
deadlock_detector_stress_test.cc 543 struct CB {
548 // Thread function with CB.
550 CB *cb = (CB*)param; local
551 (cb->lt->*cb->f)();
559 CB cb[kNumThreads] = {{f1, this}, {f2, this}, {f3, this}, {f4, this}}; local
560 for (int i = 0; i < kNumThreads && cb[i].f; i++
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
unwind.c 469 unwind_entry_cb_t cb, void *arg)
487 return cb(&e, arg);
518 static int get_entries(struct unwind_info *ui, unwind_entry_cb_t cb,
539 ret = entry(ip, ui->thread, ui->machine, cb, arg);
546 int unwind__get_entries(unwind_entry_cb_t cb, void *arg,
566 ret = entry(ip, thread, machine, cb, arg);
570 return get_entries(&ui, cb, arg);
  /external/wpa_supplicant_8/src/wps/
httpread.c 63 void (*cb)(struct httpread *handle, void *cookie, member in struct:httpread
160 (*h->cb)(h, h->cookie, HTTPREAD_EVENT_TIMEOUT);
665 (*h->cb)(h, h->cookie, HTTPREAD_EVENT_ERROR);
689 (*h->cb)(h, h->cookie, HTTPREAD_EVENT_FILE_READY);
708 void (*cb)(struct httpread *handle, void *cookie,
721 h->cb = cb;
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
yasm.pyx 99 cdef yasm_assoc_data_callback *cb
101 self.cb = <yasm_assoc_data_callback *>malloc(sizeof(yasm_assoc_data_callback))
102 self.cb.destroy = <void (*) (void *)>PyCObject_AsVoidPtr(destroy)
103 #self.cb.print_ = <void (*) (void *, FILE *, int)>PyCObject_AsVoidPtr(print_)
105 free(self.cb)
  /sdk/emulator/opengl/host/libs/libOpenglRender/
FrameBuffer.cpp 496 ColorBufferPtr cb( ColorBuffer::create(p_width, p_height, p_internalFormat) );
497 if (cb.Ptr() != NULL) {
499 m_colorbuffers[ret].cb = cb;
560 ERR("FB: openColorBuffer cb handle %#x not found\n", p_colorbuffer);
572 ERR("FB: closeColorBuffer cb handle %#x not found\n", p_colorbuffer);
614 (*w).second->setColorBuffer( (*c).second.cb );
631 (*c).second.cb->subUpdate(x, y, width, height, format, type, pixels);
646 return (*c).second.cb->bindToTexture();
659 return (*c).second.cb->bindToRenderbuffer()
    [all...]
  /device/generic/goldfish/camera/
EmulatedCameraFactory.cpp 503 const camera_module_callbacks_t* cb = mCallbacks; local
504 if (cb != NULL && cb->camera_device_status_change != NULL) {
505 cb->camera_device_status_change(cb, cameraId, newStatus);
  /external/chromium_org/chrome/browser/safe_browsing/
client_side_detection_host_unittest.cc 478 ClientSideDetectionService::ClientReportPhishingRequestCallback cb; local
490 .WillOnce(SaveArg<1>(&cb));
493 ASSERT_FALSE(cb.is_null());
497 cb.Run(GURL(verdict.url()), false);
511 ClientSideDetectionService::ClientReportPhishingRequestCallback cb; local
523 .WillOnce(SaveArg<1>(&cb));
526 ASSERT_FALSE(cb.is_null());
530 cb.Run(GURL(verdict.url()), false);
544 ClientSideDetectionService::ClientReportPhishingRequestCallback cb; local
557 .WillOnce(SaveArg<1>(&cb));
599 ClientSideDetectionService::ClientReportPhishingRequestCallback cb; local
794 ClientSideDetectionService::ClientReportMalwareRequestCallback cb; local
    [all...]
  /external/chromium_org/content/browser/media/android/
media_resource_getter_impl.cc 244 GetCookieCB cb = base::Bind(&MediaResourceGetterImpl::GetCookiesCallback, local
252 base::Bind(&ReturnResultOnUIThread, cb)));
266 GetPlatformPathCB cb = local
275 base::Bind(&RequestPlatformPathFromBlobURL, url, browser_context_, cb));
284 context, cb));
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_jpx_opj.cpp 103 static void sycc_to_rgb(int offset, int upb, int y, int cb, int cr,
107 cb -= offset;
115 g = y - (int)(0.344 * (float)cb + 0.714 * (float)cr);
121 b = y + (int)(1.772 * (float)cb);
131 const int *y, *cb, *cr; local
140 cb = img->comps[1].data;
146 sycc_to_rgb(offset, upb, *y, *cb, *cr, r, g, b);
148 ++cb;
164 const int *y, *cb, *cr; local
174 cb = img->comps[1].data;
217 const int *y, *cb, *cr, *ny; local
    [all...]

Completed in 862 milliseconds

<<31323334353637383940>>