HomeSort by relevance Sort by last modified time
    Searched full:passkey (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/bluetooth/bluez/test/
simple-agent 45 passkey = raw_input("Enter passkey: ")
46 return dbus.UInt32(passkey)
50 def DisplayPasskey(self, device, passkey):
51 print "DisplayPasskey (%s, %d)" % (device, passkey)
55 def RequestConfirmation(self, device, passkey):
56 print "RequestConfirmation (%s, %d)" % (device, passkey)
57 confirm = raw_input("Confirm passkey (yes/no): ")
60 raise Rejected("Passkey doesn't match")
agent.c 127 unsigned int passkey; local
149 printf("Passkey request for device %s\n", path);
156 passkey = strtoul(passkey_value, NULL, 10);
158 dbus_message_append_args(reply, DBUS_TYPE_UINT32, &passkey,
176 unsigned int passkey; local
179 DBUS_TYPE_UINT32, &passkey,
196 printf("Confirmation request of %u for device %s\n", passkey, path);
255 fprintf(stderr, "Invalid arguments for passkey Confirm method");
567 "\tagent [--adapter adapter-path] [--path agent-path] <passkey> [<device>]\n"
  /external/bluetooth/bluez/doc/
agent-api.txt 26 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/
agent.h 34 uint32_t passkey, void *user_data);
74 uint32_t passkey, agent_cb cb,
78 uint32_t passkey);
dbus-hci.h 40 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);
hcid.conf 24 passkey "Bluez";
agent.c 457 error("Wrong passkey reply signature: %s", err.message);
467 error("Invalid passkey length from handler");
469 "Invalid passkey length");
602 uint32_t passkey; local
626 DBUS_TYPE_UINT32, &passkey,
628 error("Wrong passkey reply signature: %s", err.message);
634 cb(agent, NULL, passkey, req->user_data);
808 uint32_t passkey)
821 DBUS_TYPE_UINT32, &passkey,
836 uint32_t passkey, agent_cb cb
    [all...]
dbus-hci.c 264 static void passkey_cb(struct agent *agent, DBusError *err, uint32_t passkey,
284 cp.passkey = passkey;
436 int hcid_dbus_user_confirm(bdaddr_t *sba, bdaddr_t *dba, uint32_t passkey)
508 passkey, confirm_cb);
526 int hcid_dbus_user_notify(bdaddr_t *sba, bdaddr_t *dba, uint32_t passkey)
535 passkey, NULL);
device.h 79 uint32_t passkey, void *cb);
security.c 442 btohl(req->passkey)) < 0)
460 hcid_dbus_user_notify(sba, &req->bdaddr, btohl(req->passkey));
550 /* Request PIN from passkey agent */
hcid.conf.5.in