HomeSort by relevance Sort by last modified time
    Searched refs:mcl (Results 1 - 9 of 9) sorted by null

  /external/bluetooth/bluez/health/
mcap.c 55 struct mcap_mcl *mcl; /* MCL for this operation */ member in struct:connect_mcl
75 static void proc_req_connected(struct mcap_mcl *mcl, uint8_t *cmd, uint32_t l);
76 static void proc_req_pending(struct mcap_mcl *mcl, uint8_t *cmd, uint32_t l);
77 static void proc_req_active(struct mcap_mcl *mcl, uint8_t *cmd, uint32_t l);
79 static void (*proc_req[])(struct mcap_mcl *mcl, uint8_t *cmd, uint32_t len) = {
85 static void mcap_cache_mcl(struct mcap_mcl *mcl);
107 static uint8_t default_mdl_conn_req_cb(struct mcap_mcl *mcl,
124 static void set_default_cb(struct mcap_mcl *mcl)
126 if (!mcl->cb
448 struct mcap_mcl *mcl = data; local
524 struct mcap_mcl *mcl = mdl->mcl; local
618 struct mcap_mcl *mcl= mdl->mcl; local
659 struct mcap_mcl *mcl = mdl->mcl; local
688 struct mcap_mcl *mcl; local
1701 struct mcap_mcl *mcl = data; local
1736 struct mcap_mcl *aux, *mcl = con->mcl; local
1790 struct mcap_mcl *mcl = mdl->mcl; local
1822 struct mcap_mcl *mcl; local
1877 struct mcap_mcl *mcl; local
1947 struct mcap_mcl *mcl; local
    [all...]
mcap_sync.c 100 static int send_sync_cmd(struct mcap_mcl *mcl, const void *buf, uint32_t size)
104 if (mcl->cc == NULL)
107 sock = g_io_channel_unix_get_fd(mcl->cc);
111 static int send_unsupported_cap_req(struct mcap_mcl *mcl)
120 sent = send_sync_cmd(mcl, cmd, sizeof(*cmd));
126 static int send_unsupported_set_req(struct mcap_mcl *mcl)
135 sent = send_sync_cmd(mcl, cmd, sizeof(*cmd));
151 void mcap_sync_init(struct mcap_mcl *mcl)
153 if (!mcl->mi->csp_enabled) {
154 mcl->csp = NULL
517 struct mcap_mcl *mcl; local
550 struct mcap_mcl *mcl; local
    [all...]
mcap_lib.h 82 typedef uint8_t (* mcap_remote_mdl_conn_req_cb) (struct mcap_mcl *mcl,
88 /* MCL callbacks */
90 typedef void (* mcap_mcl_event_cb) (struct mcap_mcl *mcl, gpointer data);
91 typedef void (* mcap_mcl_connect_cb) (struct mcap_mcl *mcl, GError *err,
96 typedef void (* mcap_info_ind_event_cb) (struct mcap_mcl *mcl,
99 typedef void (* mcap_sync_cap_cb) (struct mcap_mcl *mcl,
108 typedef void (* mcap_sync_set_cb) (struct mcap_mcl *mcl,
120 gboolean mcap_create_mdl(struct mcap_mcl *mcl,
132 gboolean mcap_delete_all_mdls(struct mcap_mcl *mcl,
161 /* MCL operations *
    [all...]
mcap_internal.h 75 mcap_mcl_event_cb mcl_connected_cb; /* New MCL connected */
76 mcap_mcl_event_cb mcl_reconnected_cb; /* Old MCL has been reconnected */
77 mcap_mcl_event_cb mcl_disconnected_cb; /* MCL disconnected */
78 mcap_mcl_event_cb mcl_uncached_cb; /* MCL has been removed from MCAP cache */
90 struct mcap_instance *mi; /* MCAP instance where this MCL belongs */
93 guint wid; /* MCL Watcher id */
95 MCLState state; /* Current MCL State */
96 MCLRole role; /* Initiator or acceptor of this MCL */
103 uint8_t ctrl; /* MCL control flag */
108 #define MCAP_CTRL_CACHED 0x01 /* MCL is cached *
116 struct mcap_mcl *mcl; \/* MCL where this MDL belongs *\/ member in struct:mcap_mdl
    [all...]
hdp_types.h 104 struct mcap_mcl *mcl; /* The mcap control channel */ member in struct:hdp_device
105 gboolean mcl_conn; /* Mcl status */
hdp.c 229 static gint cmp_dev_mcl(gconstpointer a, gconstpointer mcl)
233 if (mcl == device->mcl)
300 if (!hdp_device->mcl)
303 mcap_close_mcl(hdp_device->mcl, FALSE);
304 mcap_mcl_unref(hdp_device->mcl);
305 hdp_device->mcl = NULL;
816 if (!dev->mcl)
819 mcap_close_mcl(dev->mcl, cache);
1050 static uint8_t hdp_mcap_mdl_conn_req_cb(struct mcap_mcl *mcl, uint8_t mdepid
    [all...]
hdp_util.c 1013 static void create_mcl_cb(struct mcap_mcl *mcl, GError *err, gpointer data)
1024 if (!device->mcl)
1025 device->mcl = mcap_mcl_ref(mcl);
  /external/kernel-headers/original/asm-x86/xen/
hypercall.h 312 MULTI_update_va_mapping(struct multicall_entry *mcl, unsigned long va,
315 mcl->op = __HYPERVISOR_update_va_mapping;
316 mcl->args[0] = va;
318 mcl->args[1] = new_val.pte_low;
319 mcl->args[2] = new_val.pte_high;
321 mcl->args[1] = new_val.pte_low;
322 mcl->args[2] = 0;
324 mcl->args[3] = flags;
328 MULTI_grant_table_op(struct multicall_entry *mcl, unsigned int cmd,
331 mcl->op = __HYPERVISOR_grant_table_op
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
ParcelTest.java 366 MockClassLoader mcl = new MockClassLoader(); local
372 assertNull(p.readValue(mcl));
379 assertEquals("String", p.readValue(mcl));
386 assertEquals(Integer.MAX_VALUE, p.readValue(mcl));
398 map2 = (HashMap) p.readValue(mcl);
415 bundle2 = (Bundle) p.readValue(mcl);
428 assertEquals(s, p.readValue(mcl));
435 assertEquals(Short.MAX_VALUE, p.readValue(mcl));
442 assertEquals(Long.MAX_VALUE, p.readValue(mcl));
449 assertEquals(Float.MAX_VALUE, p.readValue(mcl));
    [all...]

Completed in 142 milliseconds