/external/wpa_supplicant_6/wpa_supplicant/tests/ |
test_wpa.c | 292 struct wpa_auth_callbacks cb; local 304 os_memset(&cb, 0, sizeof(cb)); 305 cb.ctx = wpa; 306 cb.logger = auth_logger; 307 cb.send_eapol = auth_send_eapol; 308 cb.get_psk = auth_get_psk; 310 wpa->auth_group = wpa_init(wpa->auth_addr, &conf, &cb);
|
/external/wpa_supplicant_8/src/ap/ |
wpa_auth_glue.c | 259 void *ctx, int (*cb)(struct wpa_state_machine *sm, void *ctx), 266 if (sta->wpa_sm && cb(sta->wpa_sm, cb_ctx)) 274 int (*cb)(struct wpa_authenticator *sm, void *ctx); member in struct:wpa_auth_iface_iter_data 284 data->cb(iface->bss[i]->wpa_auth, data->cb_ctx)) 292 void *ctx, int (*cb)(struct wpa_authenticator *sm, void *ctx), 299 data.cb = cb; 467 struct wpa_auth_callbacks cb; local 474 os_memset(&cb, 0, sizeof(cb)); [all...] |
/external/wpa_supplicant_8/src/eapol_supp/ |
eapol_supp_sm.h | 79 * cb - Function to be called when EAPOL negotiation has been completed 89 void (*cb)(struct eapol_sm *eapol, int success, void *ctx); member in struct:eapol_ctx 92 * cb_ctx - Callback context for cb()
|
/external/wpa_supplicant_8/wpa_supplicant/ |
gas_query.c | 36 void (*cb)(void *ctx, const u8 *dst, u8 dialog_token, member in struct:gas_query_pending 77 query->cb(query->ctx, query->addr, query->dialog_token, result, 419 void (*cb)(void *ctx, const u8 *dst, u8 dialog_token, 445 query->cb = cb;
|
ibss_rsn.c | 299 static int auth_for_each_sta(void *ctx, int (*cb)(struct wpa_state_machine *sm, 309 if (peer->auth && cb(peer->auth, cb_ctx)) 368 struct wpa_auth_callbacks cb; local 381 os_memset(&cb, 0, sizeof(cb)); 382 cb.ctx = ibss_rsn; 383 cb.logger = auth_logger; 384 cb.set_eapol = auth_set_eapol; 385 cb.send_eapol = auth_send_eapol; 386 cb.get_psk = auth_get_psk [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Color.java | 133 final float cb = (V - b) / vtemp; local 136 H = cb - cg; 138 H = 2 + cr - cb;
|
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
PhoneWindow.java | 257 final Callback cb = getCallback(); local 258 if (cb != null && !isDestroyed()) { 259 cb.onContentChanged(); 276 final Callback cb = getCallback(); local 277 if (cb != null && !isDestroyed()) { 278 cb.onContentChanged(); 288 final Callback cb = getCallback(); local 289 if (cb != null && !isDestroyed()) { 290 cb.onContentChanged(); 366 final Callback cb = getCallback() local 535 Callback cb = getCallback(); local 707 Callback cb = getCallback(); local 954 final Callback cb = getCallback(); local 970 final Callback cb = getCallback(); local 1735 Callback cb = getCallback(); local 1748 Callback cb = getCallback(); local 1818 final Callback cb = getCallback(); local [all...] |
/hardware/ti/wlan/mac80211/ti-utils/ |
calibrator.c | 211 struct nl_cb *cb, 282 struct nl_cb *cb; local 423 cb = nl_cb_alloc(calibrator_debug ? NL_CB_DEBUG : NL_CB_DEFAULT); 424 if (!cb) { 444 err = cmd->handler(state, cb, msg, argc, argv); 458 nl_cb_err(cb, NL_CB_CUSTOM, error_handler, &err); 459 nl_cb_set(cb, NL_CB_FINISH, NL_CB_CUSTOM, finish_handler, &err); 460 nl_cb_set(cb, NL_CB_ACK, NL_CB_CUSTOM, ack_handler, &err); 463 nl_recvmsgs(state->nl_sock, cb); 466 nl_cb_put(cb); [all...] |
/libcore/luni/src/main/java/java/nio/charset/ |
CharsetEncoder.java | 186 private boolean implCanEncode(CharBuffer cb) { 199 this.encode(cb); 227 CharBuffer cb; local 229 cb = ((CharBuffer) sequence).duplicate(); 231 cb = CharBuffer.wrap(sequence); 233 return implCanEncode(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);
|
/sdk/emulator/opengl/host/libs/libOpenglRender/ |
FrameBuffer.h | 30 ColorBufferPtr cb; member in struct:ColorBufferRef
|
/libcore/luni/src/main/java/java/lang/ |
String.java | 174 CharBuffer cb = Charset.defaultCharset().decode(ByteBuffer.wrap(data, offset, byteCount)); local 175 this.count = cb.length(); 178 value = cb.array(); 379 CharBuffer cb = charset.decode(ByteBuffer.wrap(data, offset, byteCount)); local 381 this.count = cb.length(); 383 // We could use cb.array() directly, but that would mean we'd have to trust 389 System.arraycopy(cb.array(), 0, value, 0, count); [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
OverscanActivity.java | 105 ActionMode.Callback cb = new MyActionModeCallback(); local 106 mActionMode = startActionMode(cb);
|
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/ |
Sasl3Test.java | 315 TextOutputCallback[] cb = { new TextOutputCallback( local 318 hnd.handle(cb);
|
/external/bluetooth/bluez/attrib/ |
gatt.c | 40 gatt_cb_t cb; member in struct:discover_primary 49 gatt_cb_t cb; member in struct:discover_char 145 dp->cb(dp->primaries, err, dp->user_data); 213 dp->cb(dp->primaries, err, dp->user_data); 223 GAttribResultFunc cb; local 235 dp->cb = func; 240 cb = primary_by_uuid_cb; 242 cb = primary_all_cb; 244 return g_attrib_send(attrib, 0, buf[0], buf, plen, cb, dp, NULL); 321 dc->cb(dc->characteristics, err, dc->user_data) [all...] |
/external/bluetooth/bluez/audio/ |
device.c | 74 service_auth_cb cb; member in struct:service_auth 746 auth->cb(derr, auth->user_data); 795 const char *uuid, service_auth_cb cb, 806 auth->cb = cb; 829 authorization_cb cb, void *user_data) 839 if (cb && auth->cb != cb)
|
media.c | 66 media_endpoint_cb_t cb; member in struct:endpoint_request 491 if (request->cb) 492 request->cb(endpoint, NULL, size, 531 if (request->cb) 532 request->cb(endpoint, ret, size, request->user_data); 541 media_endpoint_cb_t cb, 562 request->cb = cb; 576 media_endpoint_cb_t cb, 609 return media_endpoint_async_call(conn, msg, endpoint, cb, user_data) [all...] |
/external/bluetooth/bluez/gdbus/ |
watch.c | 256 struct filter_callback *cb = l->data; local 257 if (cb->id == id) 258 return cb; 261 struct filter_callback *cb = l->data; local 262 if (cb->id == id) 263 return cb; 293 struct filter_callback *cb = l->data; local 294 if (cb->disc_func) 295 cb->disc_func(data->connection, cb->user_data) 312 struct filter_callback *cb = NULL; local 397 struct filter_callback *cb; local 455 struct filter_callback *cb; local 555 struct filter_callback *cb = data->callback; local 658 struct filter_callback *cb; local 695 struct filter_callback *cb; local 718 struct filter_callback *cb; local [all...] |
/external/bluetooth/bluez/health/ |
mcap_internal.h | 99 struct mcap_mdl_cb *cb; /* MDL callbacks */ member in struct:mcap_mcl
|
/external/bluetooth/bluez/src/ |
agent.c | 77 void *cb; member in struct:agent_request 160 agent_cb cb; local 167 pincode_cb = agent->request->cb; 171 cb = agent->request->cb; 172 cb(agent, &err, agent->request->user_data); 193 agent_remove_cb cb, void *remove_cb_data) 203 agent->remove_cb = cb; 215 void *cb, 225 req->cb = cb 255 agent_cb cb = req->cb; local 364 agent_pincode_cb cb = req->cb; local 538 agent_passkey_cb cb = req->cb; local [all...] |
glib-helper.c | 116 bt_callback_t cb; member in struct:search_context 179 if (ctxt->cb) 180 ctxt->cb(recs, err, ctxt->user_data); 209 if (ctxt->cb) 210 ctxt->cb(NULL, err, ctxt->user_data); 267 if (ctxt->cb) 268 ctxt->cb(NULL, -err, ctxt->user_data); 311 uuid_t *uuid, bt_callback_t cb, void *user_data, 317 if (!cb) 324 ctxt->cb = cb [all...] |
/external/chromium/net/disk_cache/ |
entry_unittest.cc | 1156 TestCompletionCallback cb; local 1291 TestCompletionCallback cb; local 1310 TestCompletionCallback cb; local 1407 TestCompletionCallback cb; local 1553 TestCompletionCallback cb; local 1786 TestCompletionCallback cb; local [all...] |
/external/chromium/third_party/libevent/ |
event.c | 544 void (*cb)(int, short, void *); member in struct:event_once 555 (*eonce->cb)(fd, events, eonce->arg); 583 eonce->cb = callback;
|
/external/icu4c/test/cintltst/ |
cintltst.c | 493 UConverterFromUCallback cb; local 512 ucnv_setFromUCallBack(conv, UCNV_FROM_U_CALLBACK_ESCAPE, UCNV_ESCAPE_C, &cb, &p, &errorCode);
|
/external/jmonkeyengine/engine/src/core/com/jme3/effect/ |
ParticleTriMesh.java | 79 ByteBuffer cb = BufferUtils.createByteBuffer(numParticles * 4 * 4); local 81 cvb.setupData(Usage.Stream, 4, Format.UnsignedByte, cb); 86 buf.updateData(cb);
|