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

  /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...]
  /packages/apps/Nfc/src/com/android/nfc/handover/
HandoverManager.java 68 static final byte[] TYPE_BT_OOB = "application/vnd.bluetooth.ep.oob".
648 payload[2] = 'b'; // carrier data reference: ID for Bluetooth OOB data record
734 // we have a handover request, look for BT OOB record
736 for (NdefRecord oob : m.getRecords()) {
737 if (oob.getTnf() == NdefRecord.TNF_MIME_MEDIA &&
738 Arrays.equals(oob.getType(), TYPE_BT_OOB)) {
739 bluetoothData = parseBtOob(ByteBuffer.wrap(oob.getPayload()));
763 // BT OOB found, whitelist it for incoming OPP data
766 // return BT OOB record so they can perform handover
    [all...]
  /system/extras/ext4_utils/
allocate.c 126 printf("OOB list:\n");
612 /* Reserve the next blocks for oob data (indirect or extent blocks) */
615 struct region *oob = split_allocation(alloc, blocks); local
618 if (oob == NULL)
621 while (oob && oob != alloc->list.iter) {
622 next = oob->next;
623 region_list_remove(&alloc->list, oob);
624 region_list_append(&alloc->oob_list, oob);
625 oob = next
    [all...]
  /frameworks/av/media/libstagefright/
MPEG2TSWriter.cpp 249 notify->setInt32("oob", true);
631 int32_t oob; local
632 if (msg->findInt32("oob", &oob) && oob) {
  /external/bluetooth/bluedroid/stack/btm/
btm_sec.c     [all...]
  /external/bluetooth/bluedroid/stack/include/
btm_api.h 486 /* the following EIR tags are defined to OOB, not regular EIR data */
    [all...]

Completed in 4242 milliseconds