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

1 2

  /system/bt/main/
bte_main.c 80 static const hci_t *hci; variable
104 hci = hci_layer_get_interface();
105 if (!hci)
106 LOG_ERROR(LOG_TAG, "%s could not get hci layer interface.", __func__);
110 LOG_ERROR(LOG_TAG, "%s unable to allocate hci message queue.", __func__);
114 data_dispatcher_register_default(hci->event_dispatcher, btu_hci_msg_queue);
115 hci->set_data_queue(btu_hci_msg_queue);
132 hci->set_data_queue(NULL);
193 hci->do_postload();
208 hci->send_low_power_command(enable ? LPM_ENABLE : LPM_DISABLE)
    [all...]
Android.mk 47 $(LOCAL_PATH)/../hci/include\
77 libbt-hci \
101 libbt-hci \
  /libcore/ojluni/src/main/java/sun/net/www/protocol/http/
NegotiateAuthentication.java 49 final private HttpCallerInfo hci; field in class:NegotiateAuthentication
64 * @param hci a schemed object.
66 public NegotiateAuthentication(HttpCallerInfo hci) {
67 super(RequestorType.PROXY==hci.authType ? PROXY_AUTHENTICATION : SERVER_AUTHENTICATION,
68 hci.scheme.equalsIgnoreCase("Negotiate") ? NEGOTIATE : KERBEROS,
69 hci.url,
71 this.hci = hci;
93 synchronized public static boolean isSupported(HttpCallerInfo hci) {
98 String hostname = hci.host
    [all...]
AuthenticationHeader.java 84 private final HttpCallerInfo hci; // un-schemed, need check field in class:AuthenticationHeader
120 HttpCallerInfo hci, boolean dontUseNegotiate) {
121 this.hci = hci;
130 return hci;
180 if(hci == null || !NegotiateAuthentication.isSupported(new HttpCallerInfo(hci, "Negotiate"))) {
200 if(hci == null || !NegotiateAuthentication.isSupported(new HttpCallerInfo(hci, "Kerberos"))) {
Negotiator.java 37 static Negotiator getNegotiator(HttpCallerInfo hci) {
40 // return new NegotiatorImpl(hci);
63 return (Negotiator) (c.newInstance(hci));
  /hardware/marvell/bt/libbt-vendor/
Android.mk 12 $(BDROID_DIR)/hci/include
  /device/linaro/hikey/wpan/bluedroid_wilink/
Android.mk 21 LOCAL_C_INCLUDES := system/bt/hci/include hardware/libhardware/include
  /hardware/qcom/bt/msm8960/libbt-vendor/
Android.mk 32 $(BDROID_DIR)/hci/include \
  /hardware/qcom/bt/msm8909/libbt-vendor/
Android.mk 47 external/bluetooth/bluedroid/hci/include \
48 system/bt/hci/include \
  /hardware/qcom/bt/msm8992/libbt-vendor/
Android.mk 46 $(BDROID_DIR)/hci/include \
  /hardware/qcom/bt/msm8996/libbt-vendor/
Android.mk 46 $(BDROID_DIR)/hci/include \
  /system/bt/hci/
Android.mk 3 # HCI static library for target
34 LOCAL_MODULE := libbt-hci
45 # HCI unit tests for target
72 LOCAL_STATIC_LIBRARIES := libbt-hci libosi libcutils libbtcore libbt-protos
  /system/bt/hci/src/
vendor.c 38 static const hci_t *hci; variable
51 hci = hci_interface;
156 // Called by vendor library when it needs an HCI buffer.
172 // HCI layer expects us to release the response.
177 // Called back from vendor library when it wants to send an HCI command.
179 assert(hci != NULL);
180 hci->transmit_command((BT_HDR *)buffer, transmit_completed_callback, NULL, callback);
hci_inject.c 53 static const hci_t *hci; variable
74 hci = hci_interface;
170 // TODO(sharvil): validate incoming HCI messages.
171 // TODO(sharvil): once we have an HCI parser, we can eliminate
181 hci->transmit_downward(buf->event, buf);
  /system/bt/vendor_libs/test_vendor_lib/
Android.mk 25 $(BT_DIR)/hci/include \
61 $(BT_DIR)/hci/include \
  /hardware/broadcom/libbt/
Android.mk 31 $(BDROID_DIR)/hci/include \
  /system/bt/hci/test/
hci_layer_test.cpp 63 static const hci_t *hci; variable
368 EXPECT_EQ(hci, hci_interface);
533 hci = hci_layer_get_test_interface(
608 hci->do_postload();
617 hci->transmit_downward(MSG_STACK_TO_HC_HCI_ACL, packet);
667 hci->transmit_command(data_to_receive, NULL, NULL, NULL);
690 hci->transmit_command(data_to_receive, command_complete_callback, command_status_callback, NULL);
715 hci->transmit_command(data_to_receive, command_complete_callback, command_status_callback, NULL);
  /system/bt/device/src/
controller.c 50 static const hci_t *hci; variable
79 #define AWAIT_COMMAND(command) future_await(hci->transmit_command_futured(command))
109 // information such as manufacturer and supported HCI version
496 hci = hci_layer_get_interface();
509 hci = hci_interface;
  /system/bt/stack/
Android.mk 26 $(LOCAL_PATH)/../hci/include \
153 LOCAL_STATIC_LIBRARIES := libbt-hci
  /external/libnfc-nci/
Android.mk 33 $(call all-c-files-under, $(NFA)/hci $(NFA)/int $(NFA)/p2p $(NFA)/rw $(NFA)/sys) \
  /system/bt/bta/
Android.mk 91 $(LOCAL_PATH)/../hci/include \
  /system/bt/device/
Android.mk 29 $(LOCAL_PATH)/../hci/include \
  /system/bt/doc/
directory_layout.md 19 * hci - *Host Controller Interface* - Communication protocol with Bluetooth chip.
  /system/bt/btif/
Android.mk 101 $(LOCAL_PATH)/../hci/include\
  /external/libpcap/
pcap-bt-monitor-linux.c 41 #include <bluetooth/hci.h>
192 /* Bind socket to the HCI device */

Completed in 988 milliseconds

1 2