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

1 2 3 4 5 6 7

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/reloc/
blebug3.s 5 ble R%yabba(%sr4,%r0)
blebug2.s 5 ble R%0xc0001004(%sr7,%r1)
blebug.s 7 ble R%$$dyncall(%sr4,%r2)
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
hm11.cxx 51 void sendCommand(upm::HM11* ble, char *cmd)
54 ble->writeData(cmd, strlen(cmd));
57 if (ble->dataAvailable(1000))
61 ble->readData(buffer, BUFSIZ - 1);
75 // Instantiate a HM11 BLE Module on UART 0
77 upm::HM11* ble = new upm::HM11(0); local
80 if (!ble->setupTty(B9600))
91 sendCommand(ble, argv[1]);
98 sendCommand(ble, addr);
105 sendCommand(ble, pin)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
blt.s 15 # ble is handled like blt, except when both arguments are registers.
17 ble $4,$5,text_label
18 ble $4,$0,text_label
19 ble $0,$5,text_label
20 ble $4,0,text_label
24 ble $4,$5,external_label
mips16-macro.s 30 1: ble $4,$7,1b
44 1: ble $2,-32769,1b
45 1: ble $3,32766,1b
  /hardware/bsp/intel/peripheral/libupm/examples/java/
HM11Sample.java 49 private static void sendCommand(upm_hm11.HM11 ble, byte[] cmd) {
51 ble.writeData(cmd);
54 if (ble.dataAvailable(1000)) {
55 ble.readData(buffer);
64 // Instantiate a HM11 BLE Module on UART 0
65 upm_hm11.HM11 ble = new upm_hm11.HM11(0); local
68 if (!ble.setupTty()) {
77 sendCommand(ble, args[0].getBytes());
82 sendCommand(ble, addr.getBytes());
89 sendCommand(ble, pin.getBytes())
    [all...]
  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
hm11.js 33 var ble = require('jsupm_hm11'); variable
50 var bleBuffer = new ble.charArray(bufferLength);
76 // Instantiate a HM11 BLE Module on UART 0
77 var my_ble_obj = new ble.HM11(0);
80 if (!my_ble_obj.setupTty(ble.int_B9600))
90 // If you have a third argument, then it's a command for BLE
132 ble.cleanUp();
133 ble = null;
  /system/bt/stack/btm/
btm_ble_addr.c 21 * This file contains functions for BLE address management.
254 if (memcmp(p_dev_rec->ble.pseudo_addr, dummy_bda, BD_ADDR_LEN) == 0)
256 memcpy(p_dev_rec->ble.pseudo_addr, new_pseudo_addr, BD_ADDR_LEN);
282 (p_dev_rec->ble.key_type & BTM_LE_KEY_PID))
291 SMP_Encrypt(p_dev_rec->ble.keys.irk, BT_OCTET16_LEN,
338 !(p_dev_rec->ble.key_type & BTM_LE_KEY_PID))
342 SMP_Encrypt(p_dev_rec->ble.keys.irk, BT_OCTET16_LEN,
400 if (memcmp(p_dev_rec->ble.static_addr, bd_addr, BD_ADDR_LEN) == 0) {
401 if ((p_dev_rec->ble.static_addr_type & (~BLE_ADDR_TYPE_ID_BIT)) !=
404 __func__, p_dev_rec->ble.static_addr_type, addr_type)
    [all...]
btm_ble.c 21 * This file contains functions for BLE device control utilities, and LE
109 p_dev_rec->ble.ble_addr_type = addr_type;
111 memcpy(p_dev_rec->ble.pseudo_addr, bd_addr, BD_ADDR_LEN);
116 p_info->results.ble_addr_type = p_dev_rec->ble.ble_addr_type ;
352 *p_addr_type = p_dev_rec->ble.ble_addr_type;
477 ** Description Set scan parameter used in BLE connection request
627 p_dev_rec->ble.ble_addr_type = p_inq_info->results.ble_addr_type;
630 memcmp(p_dev_rec->ble.pseudo_addr, remote_bda, BD_ADDR_LEN) == 0)
633 *p_addr_type = p_dev_rec->ble.ble_addr_type;
635 else if (memcmp(p_dev_rec->ble.pseudo_addr, remote_bda, BD_ADDR_LEN) == 0
    [all...]
btm_ble_privacy.c 21 * This file contains functions for BLE controller based privacy.
201 p_dev_rec->ble.in_controller_list |= BTM_RESOLVING_LIST_BIT;
203 p_dev_rec->ble.resolving_list_index = btm_ble_find_irk_index();
207 p_dev_rec->ble.in_controller_list &= ~BTM_RESOLVING_LIST_BIT;
211 btm_ble_clear_irk_index(p_dev_rec->ble.resolving_list_index);
212 p_dev_rec->ble.resolving_list_index = 0;
220 p_dev_rec->ble.in_controller_list &= ~BTM_RESOLVING_LIST_BIT;
460 if (btsnd_hcic_ble_rm_device_resolving_list(p_dev_rec->ble.static_addr_type,
461 p_dev_rec->ble.static_addr))
470 UINT8_TO_STREAM(p, p_dev_rec->ble.static_addr_type)
    [all...]
btm_ble_bgconn.c 21 * This file contains functions for BLE whitelist operation.
157 if (p_dev_rec->ble.ble_addr_type == BLE_ADDR_PUBLIC || !BTM_BLE_IS_RESOLVE_BDA(bd_addr)) {
158 started = btsnd_hcic_ble_add_white_list(p_dev_rec->ble.ble_addr_type, bd_addr);
159 p_dev_rec->ble.in_controller_list |= BTM_WHITE_LIST_BIT;
160 } else if (memcmp(p_dev_rec->ble.static_addr, bd_addr, BD_ADDR_LEN) != 0 &&
161 memcmp(p_dev_rec->ble.static_addr, dummy_bda, BD_ADDR_LEN) != 0) {
162 started = btsnd_hcic_ble_add_white_list(p_dev_rec->ble.static_addr_type,
163 p_dev_rec->ble.static_addr);
164 p_dev_rec->ble.in_controller_list |= BTM_WHITE_LIST_BIT;
167 if (p_dev_rec->ble.ble_addr_type == BLE_ADDR_PUBLIC || !BTM_BLE_IS_RESOLVE_BDA(bd_addr)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mn10200/
bcc.s 7 ble foo
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mn10300/
bcc.s 7 ble foo
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ppc/
astest2.s 57 ble- 1,.L1
59 ble+ 3,.L1
61 ble- 5,.L2
63 ble+ 7,.L2
  /external/llvm/test/MC/AArch64/
arm64-condbr-without-dots.s 18 ble lbl
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/parse/
space.s 24 ble R%yabba(%sr4, %r0)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/crx/
br_insn.s 50 .global ble
51 ble: label
52 ble *-0100 label
53 ble *-258 label
54 ble *+0xefff2 label
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/h8300/
cbranch.s 22 ble h8300_cbranch
cbranchh.s 23 ble h8300h_cbranch:8
43 ble h8300h_cbranch:16
cbranchs.s 23 ble h8300s_cbranch:8
43 ble h8300s_cbranch:16
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/rx/
r-bcc.d 22 16: 2b 05 ble\.b 1b <bgt\+0x7>
24 1b: 2b 06 ble\.b 21 <bltu>
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/v850/
branch.s 8 ble bcc
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-nios2/
relax_cjmp.s 27 ble r2, r3, sym
  /external/llvm/test/MC/MachO/ARM/
relax-thumb2-branches.s 3 ble Lfoo @ wide encoding
9 ble Lbaz @ narrow encoding

Completed in 497 milliseconds

1 2 3 4 5 6 7