/packages/modules/adb/ |
D | types_test.cpp | 260 std::vector<Block> blocks; in packets_to_blocks() local 265 blocks.emplace_back(std::move(header)); in packets_to_blocks() 271 blocks.push_back(std::move(payload)); in packets_to_blocks() 274 return blocks; in packets_to_blocks() 300 auto blocks = packets_to_blocks(input); in TEST() local 301 ASSERT_EQ(size_t(2), blocks.size()); in TEST() 303 runAndVerifyAPacketTest(blocks, input); in TEST() 310 auto blocks = packets_to_blocks(input); in TEST() local 311 blocks.emplace(blocks.begin(), Block{0}); in TEST() 312 blocks.emplace_back(Block{0}); in TEST() [all …]
|
/packages/modules/Bluetooth/system/embdrv/sbc/decoder/srce/ |
D | decoder-oina.c | 40 uint8_t blocks, uint8_t alloc, uint8_t maxBitpool) { in OI_CODEC_SBC_DecoderConfigureRaw() argument 63 if (blocks > SBC_BLOCKS_15) { in OI_CODEC_SBC_DecoderConfigureRaw() 79 context->common.frameInfo.blocks = blocks; in OI_CODEC_SBC_DecoderConfigureRaw()
|
D | decoder-sbc.c | 247 context->common.frameInfo.blocks = SBC_BLOCKS_15; in OI_CODEC_SBC_DecoderConfigureMSbc() 403 uint8_t blocks; in OI_CODEC_SBC_FrameCount() local 419 subbands = mode = blocks = frameData[1]; in OI_CODEC_SBC_FrameCount() 422 blocks = block_values[(blocks & (BIT5 | BIT4)) >> 4]; in OI_CODEC_SBC_FrameCount() 426 frameLen = blocks * frameData[2]; in OI_CODEC_SBC_FrameCount()
|
D | decoder-private.c | 101 frame->blocks = (d1 & (BIT5 | BIT4)) >> 4; in OI_SBC_ReadHeader() 102 frame->nrof_blocks = block_values[frame->blocks]; in OI_SBC_ReadHeader()
|
D | framing.c | 173 frame->nrof_blocks = block_values[frame->blocks]; in OI_SBC_ExpandFrameFields()
|
/packages/modules/GeoTZ/s2storage/ |
D | README.md | 1 This directory contains files related to storage of read-only S2 data in blocks. 26 blocks of data, and metadata about those blocks. All types are big-endian / network byte ordered. 31 2. Next are the block infos, which hold metadata about all blocks in the file such as their ID, 33 3. Lastly, come the blocks of data themselves. Blocks can be zero-length, in which case they take up
|
/packages/modules/HealthFitness/framework/java/android/health/connect/internal/datatypes/ |
D | PlannedExerciseBlockInternal.java | 39 public static void writeToParcel(List<PlannedExerciseBlockInternal> blocks, Parcel parcel) { in writeToParcel() argument 40 parcel.writeInt(blocks.size()); in writeToParcel() 41 for (PlannedExerciseBlockInternal block : blocks) { in writeToParcel()
|
D | PlannedExerciseSessionRecordInternal.java | 87 List<PlannedExerciseBlockInternal> blocks) { in setExerciseBlocks() argument 88 this.mExerciseBlocks = blocks; in setExerciseBlocks()
|
/packages/modules/adb/client/ |
D | incremental_utils.cpp | 147 static void appendBlocks(int32_t start, int count, std::vector<int32_t>* blocks) { in appendBlocks() argument 149 blocks->push_back(start); in appendBlocks() 151 auto oldSize = blocks->size(); in appendBlocks() 152 blocks->resize(oldSize + count); in appendBlocks() 153 std::iota(blocks->begin() + oldSize, blocks->end(), start); in appendBlocks()
|
/packages/modules/HealthFitness/framework/java/android/health/connect/datatypes/ |
D | PlannedExerciseSessionRecord.java | 85 @NonNull List<PlannedExerciseBlock> blocks, in PlannedExerciseSessionRecord() argument 100 mBlocks = blocks; in PlannedExerciseSessionRecord() 356 public Builder setBlocks(@NonNull List<PlannedExerciseBlock> blocks) { in setBlocks() argument 357 Objects.requireNonNull(blocks); in setBlocks() 359 mBlocks.addAll(blocks); in setBlocks()
|
/packages/modules/GeoTZ/tzs2storage/ |
D | README.md | 17 most of the blocks are "packed tables". See the README.md associated with the 24 blocks of data, and metadata about those blocks. All types are big-endian / network byte ordered. 29 2. Next are the block infos, which hold metadata about all blocks in the file such as their ID, 31 3. Lastly, come the blocks of data themselves. Blocks can be zero-length, in which case they take up 59 information needed to locate and interpret the data storage blocks. 114 The header contains format information needed to address the suffix table blocks 115 and the block format information needed to interpret those blocks. It also 116 contains information shared by all blocks such as the TZ ID sets.
|
/packages/modules/adb/docs/dev/ |
D | incremental-install.md | 22 Each file of an app (apk, splits, obb) are viewed as a series of blocks. 24 In incremental-install mode, `pm` only need to receive a few blocks to validate 28 In the background, ADB will keep on steaming blocks linearly, even after `pm` 32 The `IS` sends blocks to the device in order it assumes will be accessed by `pm`. 35 `pm` will inevitably need blocks it has not received yet. For example, when the
|
/packages/modules/Virtualization/guest/storage_balloon_agent/src/ |
D | main.rs | 54 let total = fr_size.checked_mul(stat.blocks() as u64).context(format!( in calculate_clusters_count() 57 stat.blocks() in calculate_clusters_count()
|
/packages/modules/Bluetooth/system/embdrv/sbc/decoder/include/ |
D | oi_codec_sbc.h | 169 uint8_t blocks; member 331 uint8_t blocks, uint8_t alloc, uint8_t maxBitpool);
|
/packages/apps/Car/Launcher/buildSrc/src/main/java/aconfig/ |
D | README.md | 10 Add `id 'aconfig'` in plugins blocks and specify `packageName` and `.aconfig src file`
|
/packages/modules/Bluetooth/android/pandora/mmi2grpc/mmi2grpc/ |
D | hogp.py | 278 blocks = re.split("Handle:", body) 285 for block in blocks:
|
/packages/modules/Permission/tests/cts/permission/src/android/permission/cts/ |
D | FileUtils.java | 72 public long blocks; field in FileUtils.FileStatus
|
/packages/apps/Dialer/java/com/android/dialer/proguard/ |
D | proguard_release.flags | 16 # This allows proguard to strip isLoggable() blocks containing only debug log
|
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/dataentries/formatters/ |
D | PlannedExerciseSessionRecordFormatter.kt | 74 val exerciseBlock = record.blocks in <lambda>()
|
/packages/modules/NeuralNetworks/tools/api/ |
D | OperationTypes.t | 90 * the non-zero blocks. For an n-dimensional tensor with dimensions [D0, D1, …, Dn-1]: if
|
/packages/modules/DnsResolver/ |
D | README-DoT.md | 15 network. `DnsTlsDispatcher` also blocks each query thread, waiting on a
|
/packages/modules/Virtualization/android/fd_server/src/ |
D | aidl.rs | 390 blockNumbers: st.blocks().try_into()?, in try_into_fs_stat()
|
/packages/modules/AdServices/adservices/service-core/proto/ |
D | seller_frontend_service.proto | 88 // (e.g. Category blocks Publisher has chosen and so on). This can
|
/packages/modules/Bluetooth/system/gd/docs/architecture/ |
D | architecture.md | 123 ## Building blocks
|
/packages/apps/LegacyCamera/jni/feature_mos/doc/ |
D | feature_mos_API_doxyfile | 367 # documentation blocks found inside the body of a function. 368 # If set to NO (the default) these blocks will be appended to the 738 # doxygen to hide any special comment blocks from generated source code
|