Home
last modified time | relevance | path

Searched refs:rest (Results 1 – 25 of 55) sorted by relevance

123

/packages/modules/Bluetooth/floss/hcidoc/src/
Dparser.rs41 let rest = item; in try_from() localVariable
42 let (id_bytes, rest) = rest.split_at(8); in try_from()
43 let (version_bytes, rest) = rest.split_at(std::mem::size_of::<u32>()); in try_from()
44 let (data_type_bytes, _rest) = rest.split_at(std::mem::size_of::<u32>()); in try_from()
154 let rest = item; in try_from() localVariable
155 let (orig_len_bytes, rest) = rest.split_at(std::mem::size_of::<u32>()); in try_from()
156 let (included_len_bytes, rest) = rest.split_at(std::mem::size_of::<u32>()); in try_from()
157 let (flags_bytes, rest) = rest.split_at(std::mem::size_of::<u32>()); in try_from()
158 let (drops_bytes, rest) = rest.split_at(std::mem::size_of::<u32>()); in try_from()
159 let (ts_bytes, _rest) = rest.split_at(std::mem::size_of::<u64>()); in try_from()
[all …]
/packages/modules/Bluetooth/system/gd/rust/linux/utils/src/
Dsocket.rs196 let (opcode_arr, rest) = item.data.split_at(std::mem::size_of::<u16>()); in try_from()
199 let status = rest[0]; in try_from()
200 let (_, rest) = rest.split_at(std::mem::size_of::<u8>()); in try_from()
205 if rest.len() < 2 { in try_from()
206 debug!("ReadIndexList packet too small: {}", rest.len()); in try_from()
210 let (len_arr, rest) = rest.split_at(std::mem::size_of::<u16>()); in try_from()
214 if rest.len() < explen { in try_from()
218 rest.len() in try_from()
223 let interfaces: Vec<u16> = rest in try_from()
226 .zip(rest.iter().skip(1).step_by(2)) in try_from()
[all …]
/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/
Dsocket.rs82 let (size_bytes, rest) = bytes.split_at(std::mem::size_of::<u16>()); in try_from()
88 let (addr_bytes, rest) = rest.split_at(std::mem::size_of::<RawAddress>()); in try_from()
89 let (channel_bytes, rest) = rest.split_at(std::mem::size_of::<i32>()); in try_from()
90 let (status_bytes, rest) = rest.split_at(std::mem::size_of::<i32>()); in try_from()
91 let (max_tx_packet_size_bytes, rest) = rest.split_at(std::mem::size_of::<u16>()); in try_from()
92 let (max_rx_packet_size_bytes, _unused) = rest.split_at(std::mem::size_of::<u16>()); in try_from()
/packages/modules/NeuralNetworks/tools/systrace_parser/parser/test/
Domr1.txt15 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
30 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
45 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
60 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
75 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
Dunittest.txt15 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
31 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
Dhdrnet-bm.txt16 with the rest of the numbers
Dhdrnet.txt15 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
Dcpu.txt16 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
Dold.txt15 * This total ignores missing (n/a) values and thus is not necessarily consistent with the rest of t…
/packages/modules/Virtualization/pvmfw/src/
Dconfig.rs211 let (header, rest) = in new()
232 let rest = if let Some(rest_size) = total_size.checked_sub(HEADER_SIZE) { in new() localVariable
233 rest.get_mut(..rest_size).ok_or(Error::InvalidSize(total_size))? in new()
239 zerocopy::Ref::<_, [HeaderEntry]>::new_slice_from_prefix(rest, header.entry_count()?) in new()
287 let (chunk, rest) = body.split_at_mut(range.len()); in get_entries()
289 body = rest; in get_entries()
/packages/apps/TV/common/src/com/android/tv/common/util/
DCollectionUtils.java35 public static <T> T[] concatAll(T[] first, T[]... rest) { in concatAll() argument
37 for (T[] array : rest) { in concatAll()
42 for (T[] array : rest) { in concatAll()
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/
DImapResponseParser.java269 String rest = readUntilEol(); in parseResponse() local
270 if (!TextUtils.isEmpty(rest)) { in parseResponse()
272 responseToDestroy.add(new ImapSimpleString(rest)); in parseResponse()
/packages/services/BuiltInPrintService/src/com/android/bips/discovery/
DMultiDiscovery.java40 public MultiDiscovery(Discovery first, Discovery... rest) { in MultiDiscovery() argument
43 mDiscoveries.addAll(Arrays.asList(rest)); in MultiDiscovery()
/packages/apps/TV/libs/
Dtruth-0.45.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/packages/modules/Connectivity/service-t/native/libs/libnetworkstats/
DNetworkTraceHandler.cpp66 void HashCombine(std::size_t& seed, const T& val, const Rest&... rest) { in HashCombine() argument
68 (HashCombine(seed, rest), ...); in HashCombine()
/packages/modules/Bluetooth/system/doc/
Ddirectory_layout.md29 * vnd - *Vendor* - Vendor specific APIs - *to be integrated into rest of stack ?*.
/packages/modules/DeviceLock/DeviceLockController/proto/
Ddevice_checkin_info.proto41 // then the rest of the device identifiers are set to this check-in status.
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/incident/
Dincident_minimal.proto30 * it using this proto, which will result in the rest of the fields being dropped.
/packages/modules/Bluetooth/system/gd/rust/linux/client/src/
Dmain.rs800 let (cmd, rest) = match args.split_first() { in handle_client_command()
809 handler.process_cmd_line(cmd, &rest.to_vec()); in handle_client_command()
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/dataentries/formatters/
DExerciseSegmentTypeFormatter.kt142 ExerciseSegmentType.EXERCISE_SEGMENT_TYPE_REST -> context.getString(R.string.rest) in getSegmentType()
/packages/modules/Connectivity/service-t/
DAndroid.bp37 // on the branch, while minimizing merge conflicts in the rest of the
/packages/apps/Launcher3/tests/src/com/android/launcher3/model/
DFirstScreenBroadcastHelperTest.kt293 fun `Broadcast truncates Widgets before the rest of the first screen items`() { in Broadcast truncates Widgets before the rest of the first screen items()
/packages/modules/Virtualization/vmbase/
DREADME.md98 whatever the rest of the program is doing with the UART.
/packages/modules/Bluetooth/system/gd/rust/linux/docs/
Dstyle_guide.md46 the rest of the document
/packages/modules/Connectivity/service/
DAndroid.bp27 // separate them from the rest of the file to avoid merge conflicts

123