HomeSort by relevance Sort by last modified time
    Searched refs:cb (Results 351 - 375 of 766) sorted by null

<<11121314151617181920>>

  /external/libnl-headers/
netlink-local.h 87 int (*cb)(long, const char *));
111 static inline int nl_cb_call(struct nl_cb *cb, int type, struct nl_msg *msg)
113 return cb->cb_set[type](msg, cb->cb_args[type]);
  /external/qemu/
monitor.h 75 Monitor* monitor_fake_new(void* opaque, MonitorFakeFunc cb);
block.h 115 BlockDriverCompletionFunc *cb, void *opaque);
118 BlockDriverCompletionFunc *cb, void *opaque);
120 BlockDriverCompletionFunc *cb, void *opaque);
128 BlockDriverCompletionFunc *cb; member in struct:BlockRequest
142 BlockDriverCompletionFunc *cb, void *opaque);
  /external/webkit/Source/WebKit/efl/ewk/
ewk_tiled_model.h 38 EAPI void ewk_tile_updates_process(Ewk_Tile *t, void (*cb)(void *data, Ewk_Tile *t, const Eina_Rectangle *update), const void *data);
  /external/webkit/Source/WebKit/mac/Panels/
WebAuthenticationPanel.h 51 -(id)initWithCallback:(id)cb selector:(SEL)sel;
  /external/webkit/Source/WebKit2/UIProcess/Launcher/win/
ProcessLauncherWin.cpp 88 startupInfo.cb = sizeof(startupInfo);
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
tlsv1_client.h 56 tlsv1_client_session_ticket_cb cb,
tlsv1_server.h 51 tlsv1_server_session_ticket_cb cb,
  /external/wpa_supplicant_8/src/tls/
tlsv1_client.h 57 tlsv1_client_session_ticket_cb cb,
tlsv1_server.h 51 tlsv1_server_session_ticket_cb cb,
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSyncAdapter.java 132 CheckBox cb = (CheckBox) view.findViewById(R.id.sync); local
133 cb.setChecked(selected);
201 CheckBox cb = (CheckBox) view.findViewById(R.id.sync); local
202 cb.setChecked(row.synced);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
browser.h 87 void pa_browser_set_callback(pa_browser *z, pa_browse_cb_t cb, void *userdata);
  /external/pcre/
pcre_dfa_exec.c 2475 pcre_callout_block cb; local
2703 pcre_callout_block cb; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
httpread.c 69 void (*cb)(struct httpread *handle, void *cookie, member in struct:httpread
186 (*h->cb)(h, h->cookie, HTTPREAD_EVENT_TIMEOUT);
693 (*h->cb)(h, h->cookie, HTTPREAD_EVENT_ERROR);
721 (*h->cb)(h, h->cookie, HTTPREAD_EVENT_FILE_READY);
740 void (*cb)(struct httpread *handle, void *cookie,
753 h->cb = cb;
  /external/wpa_supplicant_8/src/wps/
httpread.c 69 void (*cb)(struct httpread *handle, void *cookie, member in struct:httpread
186 (*h->cb)(h, h->cookie, HTTPREAD_EVENT_TIMEOUT);
693 (*h->cb)(h, h->cookie, HTTPREAD_EVENT_ERROR);
721 (*h->cb)(h, h->cookie, HTTPREAD_EVENT_FILE_READY);
740 void (*cb)(struct httpread *handle, void *cookie,
753 h->cb = cb;
  /external/chromium/third_party/libjingle/source/talk/base/
win32socketserver.cc 416 int Win32Socket::Send(const void *pv, size_t cb) {
417 int sent = ::send(socket_, reinterpret_cast<const char*>(pv), cb, 0);
422 int Win32Socket::SendTo(const void *pv, size_t cb,
426 int sent = ::sendto(socket_, reinterpret_cast<const char*>(pv), cb, 0,
432 int Win32Socket::Recv(void *pv, size_t cb) {
433 int received = ::recv(socket_, static_cast<char*>(pv), cb, 0);
435 if (closing_ && received <= static_cast<int>(cb))
440 int Win32Socket::RecvFrom(void *pv, size_t cb,
444 int received = ::recvfrom(socket_, static_cast<char*>(pv), cb, 0,
449 if (closing_ && received <= static_cast<int>(cb))
    [all...]
socketadapters.cc 68 int BufferedReadAdapter::Send(const void *pv, size_t cb) {
74 return AsyncSocketAdapter::Send(pv, cb);
77 int BufferedReadAdapter::Recv(void *pv, size_t cb) {
86 read = _min(cb, data_len_);
93 cb -= read;
96 // FIX: If cb == 0, we won't generate another read event
98 int res = AsyncSocketAdapter::Recv(pv, cb);
860 int LoggingSocketAdapter::Send(const void *pv, size_t cb) {
861 int res = AsyncSocketAdapter::Send(pv, cb);
867 int LoggingSocketAdapter::SendTo(const void *pv, size_t cb,
    [all...]
  /external/bluetooth/bluez/src/
adapter.h 152 const char *uuid, service_auth_cb cb, void *user_data);
197 int (*encrypt_link) (int index, bdaddr_t *bdaddr, bt_hci_result_t cb,
224 btd_adapter_powered_cb cb);
226 btd_adapter_powered_cb cb);
254 bt_hci_result_t cb, gpointer user_data);
  /external/chromium/third_party/libevent/
http.c 339 void (*cb)(struct evhttp_connection *, void *), void *arg)
344 evcon->cb = cb;
624 (*req->cb)(req, req->cb_arg);
635 void (*cb)(struct evhttp_request *, void *);
653 /* save the callback for later; the cb might free our object */
654 cb = req->cb;
670 if (cb != NULL)
671 (*cb)(NULL, cb_arg)
2163 struct evhttp_cb *cb; local
2191 struct evhttp_cb *cb = NULL; local
    [all...]
  /development/tools/emulator/opengl/host/libs/libOpenglRender/
FrameBuffer.cpp 458 ColorBufferPtr cb( ColorBuffer::create(p_width, p_height, p_internalFormat) );
459 if (cb.Ptr() != NULL) {
461 m_colorbuffers[ret].cb = cb;
572 (*w).second->setColorBuffer( (*c).second.cb );
589 (*c).second.cb->subUpdate(x, y, width, height, format, type, pixels);
604 return (*c).second.cb->bindToTexture();
617 return (*c).second.cb->bindToRenderbuffer();
798 ret = (*c).second.cb->post();
  /development/samples/ApiDemos/src/com/example/android/apis/app/
RemoteService.java 117 public void registerCallback(IRemoteServiceCallback cb) {
118 if (cb != null) mCallbacks.register(cb);
120 public void unregisterCallback(IRemoteServiceCallback cb) {
121 if (cb != null) mCallbacks.unregister(cb);
  /external/javasqlite/src/main/java/SQLite/
Database.java 172 * @param cb the object implementing the callback methods
175 public void exec(String sql, SQLite.Callback cb) throws SQLite.Exception {
177 _exec(sql, cb);
181 private native void _exec(String sql, SQLite.Callback cb)
203 * @param cb the object implementing the callback methods
207 public void exec(String sql, SQLite.Callback cb,
210 _exec(sql, cb, args);
214 private native void _exec(String sql, SQLite.Callback cb, String args[])
  /external/openssl/crypto/bio/
bss_conn.c 133 int (*cb)(const BIO *,int,int)=NULL;
136 cb=c->info_callback;
306 if (cb != NULL)
308 if (!(ret=cb((BIO *)b,c->state,ret)))
315 if (cb != NULL)
316 ret=cb((BIO *)b,c->state,ret);
  /external/oprofile/libpopt/
popt.c 82 poptCallbackType cb = (poptCallbackType)opt->arg; local
86 cb(con, POPT_CALLBACK_REASON_PRE, NULL, NULL, opt->descrip);
110 poptCallbackType cb = (poptCallbackType)opt->arg; local
114 cb(con, POPT_CALLBACK_REASON_POST, NULL, NULL, opt->descrip);
153 poptCallbackType cb = (poptCallbackType)cbopt->arg; local
157 if (cb != NULL) { /* XXX program error */
159 cb(con, POPT_CALLBACK_REASON_OPTION, myOpt,
479 const struct poptOption * cb = NULL; local
508 cb = opt;
526 if (cb) {
715 poptCallbackType cb = NULL; local
    [all...]
  /external/bluetooth/bluez/audio/
control.c 155 avctp_state_cb cb; member in struct:avctp_state_callback
489 struct avctp_state_callback *cb = l->data; local
490 cb->cb(control->dev, old_state, new_state, cb->user_data);
1188 unsigned int avctp_add_state_cb(avctp_state_cb cb, void *user_data)
1194 state_cb->cb = cb;
1208 struct avctp_state_callback *cb = l->data; local
1209 if (cb && cb->id == id)
    [all...]

Completed in 542 milliseconds

<<11121314151617181920>>