Home
last modified time | relevance | path

Searched refs:passkey (Results 1 – 14 of 14) sorted by relevance

/external/bluetooth/bluez/test/
Dsimple-agent45 passkey = raw_input("Enter passkey: ")
46 return dbus.UInt32(passkey)
50 def DisplayPasskey(self, device, passkey): argument
51 print "DisplayPasskey (%s, %d)" % (device, passkey)
55 def RequestConfirmation(self, device, passkey): argument
56 print "RequestConfirmation (%s, %d)" % (device, passkey)
Dagent.c127 unsigned int passkey; in request_passkey_message() local
156 passkey = strtoul(passkey_value, NULL, 10); in request_passkey_message()
158 dbus_message_append_args(reply, DBUS_TYPE_UINT32, &passkey, in request_passkey_message()
176 unsigned int passkey; in request_confirmation_message() local
179 DBUS_TYPE_UINT32, &passkey, in request_confirmation_message()
196 printf("Confirmation request of %u for device %s\n", passkey, path); in request_confirmation_message()
/external/bluetooth/bluez/doc/
Dagent-api.txt26 needs to get the passkey for an authentication.
37 needs to get the passkey for an authentication.
45 void DisplayPasskey(object device, uint32 passkey, uint8 entered)
48 needs to display a passkey for an authentication.
53 An empty reply should be returned. When the passkey
60 void RequestConfirmation(object device, uint32 passkey)
63 needs to confirm a passkey for an authentication.
66 or an error in case the passkey is invalid.
/external/bluetooth/bluez/src/
Dagent.h34 uint32_t passkey, void *user_data);
74 uint32_t passkey, agent_cb cb,
78 uint32_t passkey);
Dagent.c602 uint32_t passkey; in passkey_reply() local
626 DBUS_TYPE_UINT32, &passkey, in passkey_reply()
634 cb(agent, NULL, passkey, req->user_data); in passkey_reply()
808 uint32_t passkey) in confirmation_request_new() argument
821 DBUS_TYPE_UINT32, &passkey, in confirmation_request_new()
836 uint32_t passkey, agent_cb cb, in agent_request_confirmation() argument
847 agent->name, agent->path, passkey); in agent_request_confirmation()
852 err = confirmation_request_new(req, dev_path, passkey); in agent_request_confirmation()
959 uint32_t passkey) in agent_display_passkey() argument
973 DBUS_TYPE_UINT32, &passkey, in agent_display_passkey()
Ddbus-hci.h40 int hcid_dbus_user_confirm(bdaddr_t *sba, bdaddr_t *dba, uint32_t passkey);
42 int hcid_dbus_user_notify(bdaddr_t *sba, bdaddr_t *dba, uint32_t passkey);
Ddbus-hci.c264 static void passkey_cb(struct agent *agent, DBusError *err, uint32_t passkey, in passkey_cb() argument
284 cp.passkey = passkey; in passkey_cb()
436 int hcid_dbus_user_confirm(bdaddr_t *sba, bdaddr_t *dba, uint32_t passkey) in hcid_dbus_user_confirm() argument
508 passkey, confirm_cb); in hcid_dbus_user_confirm()
526 int hcid_dbus_user_notify(bdaddr_t *sba, bdaddr_t *dba, uint32_t passkey) in hcid_dbus_user_notify() argument
535 passkey, NULL); in hcid_dbus_user_notify()
Dhcid.conf24 passkey "Bluez";
Ddevice.h79 uint32_t passkey, void *cb);
Ddevice.c2306 uint32_t passkey, void *data) in passkey_cb() argument
2315 ((agent_passkey_cb) auth->cb)(agent, err, passkey, device); in passkey_cb()
2360 uint32_t passkey, void *cb) in device_request_authentication() argument
2391 err = agent_request_confirmation(agent, device, passkey, in device_request_authentication()
2395 err = agent_display_passkey(agent, device, passkey); in device_request_authentication()
Dsecurity.c442 btohl(req->passkey)) < 0) in user_confirm_request()
460 hcid_dbus_user_notify(sba, &req->bdaddr, btohl(req->passkey)); in user_passkey_notify()
/external/bluetooth/bluez/lib/bluetooth/
Dhci.h525 uint32_t passkey; member
1868 uint32_t passkey; member
1907 uint32_t passkey; member
/external/bluetooth/hcidump/parser/
Dhci.c832 printf("bdaddr %s passkey %d\n", addr, btohl(cp->passkey)); in user_passkey_reply_dump()
2981 printf("bdaddr %s passkey %d\n", addr, btohl(evt->passkey)); in user_passkey_notify_dump()
/external/bluetooth/bluez/
DChangeLog603 Fix uninitialized variable in passkey request handling.
920 Add Cancel and Release methods for passkey agents.