/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...] |
/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));
|
/packages/apps/Nfc/src/com/android/nfc/handover/ |
HandoverManager.java | 59 static final byte[] TYPE_BT_OOB = "application/vnd.bluetooth.ep.oob". 247 payload[2] = 'b'; // carrier data reference: ID for Bluetooth OOB data record 337 // we have a handover request, look for BT OOB record 339 for (NdefRecord oob : m.getRecords()) { 340 if (oob.getTnf() == NdefRecord.TNF_MIME_MEDIA && 341 Arrays.equals(oob.getType(), TYPE_BT_OOB)) { 342 bluetoothData = parseBtOob(ByteBuffer.wrap(oob.getPayload())); 370 // BT OOB found, whitelist it for incoming OPP data 373 // return BT OOB record so they can perform handover 510 // we just search for a BT OOB record, and try to cross-referenc [all...] |
/system/extras/ext4_utils/ |
allocate.c | 152 printf("OOB list:\n"); 623 /* Reserve the next blocks for oob data (indirect or extent blocks) */ 626 struct region *oob = split_allocation(alloc, blocks); local 629 if (oob == NULL) 632 while (oob && oob != alloc->list.iter) { 633 next = oob->next; 634 region_list_remove(&alloc->list, oob); 635 region_list_append(&alloc->oob_list, oob); 636 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) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
pickletester.py | 675 oob = protocols[-1] + 1 # a future protocol 676 badpickle = pickle.PROTO + chr(oob) + build_none [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
pickletester.py | 675 oob = protocols[-1] + 1 # a future protocol 676 badpickle = pickle.PROTO + chr(oob) + build_none [all...] |
/external/bluetooth/bluedroid/stack/btm/ |
btm_sec.c | [all...] |
/external/bluetooth/bluedroid/stack/include/ |
btm_api.h | 512 /* the following EIR tags are defined to OOB, not regular EIR data */ [all...] |