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

1 2 3 4 5

  /external/yaffs2/yaffs2/
yaffs_mtdif.c 42 static inline void translate_spare2oob(const yaffs_Spare *spare, __u8 *oob)
44 oob[0] = spare->tagByte0;
45 oob[1] = spare->tagByte1;
46 oob[2] = spare->tagByte2;
47 oob[3] = spare->tagByte3;
48 oob[4] = spare->tagByte4;
49 oob[5] = spare->tagByte5 & 0x3f;
50 oob[5] |= spare->blockStatus == 'Y' ? 0: 0x80;
51 oob[5] |= spare->pageStatus == 0 ? 0: 0x40;
52 oob[6] = spare->tagByte6
    [all...]
yaffs_mtdif2.c 59 T(YAFFS_TRACE_ERROR, (TSTR("No OOB space for tags" TENDSTR)));
69 T(YAFFS_TRACE_ERROR, (TSTR("No OOB space for tags" TENDSTR)));
97 T(YAFFS_TRACE_ERROR, (TSTR("No space in OOB for tags" TENDSTR)));
107 T(YAFFS_TRACE_ERROR, (TSTR("No space in OOB for tags" TENDSTR)));
  /external/bluetooth/bluedroid/doc/
properties.md 15 * ``` service.brcm.bt.oob ```
  /external/libnfc-nci/src/nfc/ndef/
ndef_cho_utils.c 61 /* Bluetooth OOB Data Type */
62 static UINT8 *p_bt_oob_rec_type = (UINT8 *)"application/vnd.bluetooth.ep.oob";
290 ** Description This function adds BT OOB Record.
324 ** Description This function appends COD EIR data at the end of BT OOB Record.
356 /* update BT OOB data length, if success */
359 /* payload length is the same as BT OOB data length */
372 ** at the end of BT OOB Record.
414 /* update BT OOB data length, if success */
417 /* payload length is the same as BT OOB data length */
429 ** Description This function appends Hash C and Rand R at the end of BT OOB Record
    [all...]
  /external/bluetooth/bluedroid/bta/include/
bta_dm_co.h 66 ** *p_oob_data - TRUE, if OOB data is available for the peer device.
85 ** oob_data - TRUE, if OOB data is available for the peer device.
113 ** Description This callout function is executed by DM to report the OOB
116 ** Parameters valid - TRUE, if the local OOB data is retrieved from LM
129 ** Description This callout function is executed by DM to request the OOB
215 ** *p_oob_data - TRUE, if OOB data is available for the peer device.
257 ** *p_oob_data - TRUE, if OOB data is available for the peer device.
bta_dm_ci.h 56 ** bta_dm_co_rmt_oob() to provide the OOB data associated
  /external/pixman/test/
Makefile.sources 12 oob-test \
  /ndk/sources/android/support/src/musl-multibyte/
internal.h 16 #define OOB(c,b) (((((b)>>3)-0x10)|(((b)>>3)+((int32_t)(c)>>26))) & ~7)
mbsrtowcs.c 42 if (OOB(c,*s)) { s--; break; }
76 if (OOB(c,*s)) { s--; break; }
mbrtowc.c 34 if (OOB(c,*s)) goto ilseq;
mbtowc.c 29 if (OOB(c,*s)) goto ilseq;
  /external/kernel-headers/original/uapi/mtd/
mtd-abi.h 51 * @MTD_OPS_PLACE_OOB: OOB data are placed at the given offset (default)
52 * @MTD_OPS_AUTO_OOB: OOB data are automatically placed at the free areas
72 * @ooblen: length of OOB buffer
74 * @usr_oob: user-provided OOB buffer
78 * This structure supports ioctl(MEMWRITE) operations, allowing data and/or OOB
79 * writes in various modes. To write to OOB-only, set @usr_data == NULL, and to
131 __u32 oobsize; /* Amount of OOB data per block (e.g. 16) */
171 /* Get info about OOB modes (e.g., RAW, PLACE, AUTO) - legacy interface */
193 /* Write data to OOB (64-bit version) */
195 /* Read data from OOB (64-bit version) *
    [all...]
  /external/strace/linux/
mtd-abi.h 51 * @MTD_OPS_PLACE_OOB: OOB data are placed at the given offset (default)
52 * @MTD_OPS_AUTO_OOB: OOB data are automatically placed at the free areas
72 * @ooblen: length of OOB buffer
74 * @usr_oob: user-provided OOB buffer
78 * This structure supports ioctl(MEMWRITE) operations, allowing data and/or OOB
79 * writes in various modes. To write to OOB-only, set @usr_data == NULL, and to
131 __u32 oobsize; /* Amount of OOB data per block (e.g. 16) */
171 /* Get info about OOB modes (e.g., RAW, PLACE, AUTO) - legacy interface */
193 /* Write data to OOB (64-bit version) */
195 /* Read data from OOB (64-bit version) *
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/handover/
HandoverManager.java 55 private static final byte[] TYPE_BT_OOB = "application/vnd.bluetooth.ep.oob"
57 private static final byte[] TYPE_BLE_OOB = "application/vnd.bluetooth.le.oob"
257 payload[2] = 'b'; // carrier data reference: ID for Bluetooth OOB data record
366 // we have a handover request, look for BT OOB record
406 // BT OOB found, whitelist it for incoming OPP data
409 // return BT OOB record so they can perform handover
549 // we just search for a BT OOB record, and try to cross-reference
551 for (NdefRecord oob : m.getRecords()) {
552 if (oob.getTnf() == NdefRecord.TNF_MIME_MEDIA &&
553 Arrays.equals(oob.getType(), TYPE_BT_OOB))
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
escape-analysis.js 256 function oob(constructor, branch) { function
264 assertEquals(3, oob(cons1, false));
265 assertEquals(3, oob(cons1, false));
266 assertEquals(7, oob(cons2, true));
267 assertEquals(7, oob(cons2, true));
269 assertEquals(7, oob(cons2, true));
270 assertEquals(7, oob(cons2, true));
271 %OptimizeFunctionOnNextCall(oob);
272 assertEquals(7, oob(cons2, true));
  /external/bluetooth/bluedroid/btif/co/
bta_dm_co.c 72 ** *p_oob_data - TRUE, if OOB data is available for the peer device.
101 ** oob_data - TRUE, if OOB data is available for the peer device.
137 ** Description This callout function is executed by DM to report the OOB
140 ** Parameters valid - TRUE, if the local OOB data is retrieved from LM
159 ** Description This callout function is executed by DM to request the OOB
393 ** *p_oob_data - TRUE, if OOB data is available for the peer device.
410 /* if OOB is not supported, this call-out function does not need to do anything
411 * otherwise, look for the OOB data associated with the address and set *p_oob_data accordingly
  /external/qemu/distrib/ext4_utils/src/
indirect.c 58 error("failed to reserve oob block");
71 error("failed to reserve oob block");
88 error("failed to reserve oob block");
117 error("failed to reserve oob block");
147 error("failed to reserve oob block");
198 error("failed to advance oob block");
230 error("failed to advance oob block");
262 error("failed to advance oob block");
allocate.c 151 printf("OOB list:\n");
590 /* Reserve the next blocks for oob data (indirect or extent blocks) */
593 struct region *oob = split_allocation(alloc, blocks); local
596 if (oob == NULL)
599 while (oob && oob != alloc->list.iter) {
600 next = oob->next;
601 region_list_remove(&alloc->list, oob);
602 region_list_append(&alloc->oob_list, oob);
603 oob = next
    [all...]
  /system/extras/ext4_utils/
indirect.c 58 error("failed to reserve oob block");
71 error("failed to reserve oob block");
88 error("failed to reserve oob block");
117 error("failed to reserve oob block");
147 error("failed to reserve oob block");
198 error("failed to advance oob block");
230 error("failed to advance oob block");
262 error("failed to advance oob block");
allocate.c 139 printf("OOB list:\n");
591 /* Reserve the next blocks for oob data (indirect or extent blocks) */
594 struct region *oob = split_allocation(alloc, blocks); local
597 if (oob == NULL)
600 while (oob && oob != alloc->list.iter) {
601 next = oob->next;
602 region_list_remove(&alloc->list, oob);
603 region_list_append(&alloc->oob_list, oob);
604 oob = next
    [all...]
  /external/bluetooth/bluedroid/stack/include/
smp_api.h 37 #define SMP_OOB_REQ_EVT 5 /* OOB request event */
83 /* OOB data present or not */
128 tSMP_OOB_FLAG oob_data; /* OOB data present (locally) for the peer device */
267 ** Description This function is called to provide the OOB data for
  /external/opencv/ml/src/
mlrtrees.cpp 376 // form array of OOB samples indices and get these samples
385 // check if the sample is OOB
389 // predict oob samples
399 // compute oob error
415 // compute oob error
437 // randomly permute values of the m-th variable in the oob samples
445 if( sample_idx_mask_for_tree->data.ptr[i] ) //the sample is not OOB
458 // correct class in the variable-m-permuted oob data
466 if( sample_idx_mask_for_tree->data.ptr[i] ) //the sample is not OOB
  /external/libnfc-nci/src/nfc/include/
ndef_utils.h 75 #define BT_OOB_REC_TYPE_LEN 32 /* Bluetooth OOB Data Type */
465 ** Description This function adds BT OOB Record.
477 ** Description This function appends COD EIR data at the end of BT OOB Record.
490 ** at the end of BT OOB Record.
503 ** Description This function appends Hash C and Rand R at the end of BT OOB Record.
515 ** Description This function appends EIR Data at the end of BT OOB Record.
  /external/bluetooth/bluedroid/bta/dm/
bta_dm_ci.c 68 ** bta_dm_co_rmt_oob() to provide the OOB data associated
  /external/libnfc-nci/src/nfa/int/
nfa_cho_int.h 76 #define NFA_CHO_MSG_BT_OOB 3 /* Simplified BT OOB message */
213 tNFA_HANDLE bt_ndef_type_handle; /* handle for BT OOB NDEF Type handler */

Completed in 1648 milliseconds

1 2 3 4 5