HomeSort by relevance Sort by last modified time
    Searched refs:disc_type (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /bionic/libc/kernel/uapi/linux/
adfs_fs.h 44 __le32 disc_type; member in struct:adfs_discrecord
cdrom.h 709 __u8 disc_type; member in struct:__anon351
  /development/ndk/platforms/android-L/include/linux/
adfs_fs.h 44 __le32 disc_type; member in struct:adfs_discrecord
cdrom.h 709 __u8 disc_type; member in struct:__anon1963
  /external/kernel-headers/original/uapi/linux/
adfs_fs.h 26 __le32 disc_type; member in struct:adfs_discrecord
cdrom.h 843 __u8 disc_type; member in struct:__anon27537
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
adfs_fs.h 26 __le32 disc_type; member in struct:adfs_discrecord
cdrom.h 843 __u8 disc_type; member in struct:__anon46604
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
adfs_fs.h 26 __le32 disc_type; member in struct:adfs_discrecord
cdrom.h 843 __u8 disc_type; member in struct:__anon48340
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
adfs_fs.h 44 __le32 disc_type; member in struct:adfs_discrecord
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
adfs_fs.h 44 __le32 disc_type; member in struct:adfs_discrecord
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
adfs_fs.h 44 __le32 disc_type; member in struct:adfs_discrecord
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/
adfs_fs.h 44 __le32 disc_type; member in struct:adfs_discrecord
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/
adfs_fs.h 44 __le32 disc_type; member in struct:adfs_discrecord
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/
adfs_fs.h 44 __le32 disc_type; member in struct:adfs_discrecord
  /external/bluetooth/bluedroid/btif/src/
btif_gatt_test.c 141 static void btif_test_discovery_result_cback(UINT16 conn_id, tGATT_DISC_TYPE disc_type,
147 ALOGD("------ GATT Discovery result %-22s -------", disc_name[disc_type]);
150 if (disc_type != GATT_DISC_CHAR_DSCPT) {
154 switch (disc_type)
194 tGATT_DISC_TYPE disc_type,
198 UNUSED(disc_type);
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/dc/
SDL_syscdrom.c 100 int ret,dc_status,disc_type; local
102 ret = cdrom_get_status(&dc_status,&disc_type);
  /external/bluetooth/bluedroid/stack/gatt/
gatt_attr.c 46 static void gatt_disc_res_cback(UINT16 conn_id, tGATT_DISC_TYPE disc_type, tGATT_DISC_RES *p_data);
47 static void gatt_disc_cmpl_cback(UINT16 conn_id, tGATT_DISC_TYPE disc_type, tGATT_STATUS status);
323 static void gatt_disc_res_cback (UINT16 conn_id, tGATT_DISC_TYPE disc_type, tGATT_DISC_RES *p_data)
330 switch (disc_type)
361 static void gatt_disc_cmpl_cback (UINT16 conn_id, tGATT_DISC_TYPE disc_type, tGATT_STATUS status)
gatt_api.c 820 ** disc_type:discovery type.
826 tGATT_STATUS GATTC_Discover (UINT16 conn_id, tGATT_DISC_TYPE disc_type,
837 GATT_TRACE_API ("GATTC_Discover conn_id=%d disc_type=%d",conn_id, disc_type);
840 (disc_type >= GATT_DISC_MAX))
842 GATT_TRACE_ERROR("GATTC_Discover Illegal param: disc_type %d conn_id = %d", disc_type, conn_id);
859 (disc_type == GATT_DISC_SRVC_BY_UUID &&
867 p_clcb->op_subtype = disc_type;
    [all...]
gatt_utils.c 2116 UINT8 op = p_clcb->operation, disc_type=GATT_DISC_MAX; local
    [all...]
  /external/bluetooth/bluedroid/bta/gatt/
bta_gattc_cache.c 464 UINT8 disc_type)
472 status = bta_gattc_discover_procedure(conn_id, p_server_cb, disc_type);
489 UINT8 disc_type)
496 if (disc_type == GATT_DISC_SRVC_ALL || disc_type == GATT_DISC_SRVC_BY_UUID)
503 if (disc_type == GATT_DISC_CHAR_DSCPT)
513 return GATTC_Discover (conn_id, disc_type, &param);
945 void bta_gattc_disc_res_cback (UINT16 conn_id, tGATT_DISC_TYPE disc_type, tGATT_DISC_RES *p_data)
955 switch (disc_type)
    [all...]
bta_gattc_int.h 536 extern void bta_gattc_disc_res_cback (UINT16 conn_id, tGATT_DISC_TYPE disc_type, tGATT_DISC_RES *p_data);
537 extern void bta_gattc_disc_cmpl_cback (UINT16 conn_id, tGATT_DISC_TYPE disc_type, tGATT_STATUS status);
538 extern tBTA_GATT_STATUS bta_gattc_discover_procedure(UINT16 conn_id, tBTA_GATTC_SERV *p_server_cb, UINT8 disc_type);
539 extern tBTA_GATT_STATUS bta_gattc_discover_pri_service(UINT16 conn_id, tBTA_GATTC_SERV *p_server_cb, UINT8 disc_type);
  /external/bluetooth/bluedroid/stack/include/
gatt_api.h 559 typedef void (tGATT_DISC_RES_CB) (UINT16 conn_id, tGATT_DISC_TYPE disc_type,
563 typedef void (tGATT_DISC_CMPL_CB) (UINT16 conn_id, tGATT_DISC_TYPE disc_type, tGATT_STATUS status);
    [all...]
  /development/ndk/platforms/android-3/include/linux/
cdrom.h 650 __u8 disc_type; member in struct:__anon1314

Completed in 905 milliseconds

1 2 3 4