Home
last modified time | relevance | path

Searched refs:sequence (Results 1 – 25 of 44) sorted by relevance

12

/system/tools/xsdc/tests/resources/simple_complex_content/
Dsimple_complex_content.xsd4 <xs:sequence>
10 </xs:sequence>
16 <xs:sequence>
19 </xs:sequence>
26 <xs:sequence>
30 </xs:sequence>
48 <xs:sequence>
53 </xs:sequence>
58 <xs:sequence>
65 </xs:sequence>
/system/core/logd/
DLogReader.cpp133 log_time sequence = start; in onDataAvailable() local
146 if (nonBlock && (sequence != log_time::EPOCH) && timeout) { in onDataAvailable()
158 LogFindStart(pid_t pid, unsigned logMask, log_time& sequence, in onDataAvailable() argument
163 mStart(sequence), in onDataAvailable()
164 mSequence(sequence), in onDataAvailable()
165 mLast(sequence), in onDataAvailable()
196 } logFindStart(pid, logMask, sequence, in onDataAvailable()
199 logbuf().flushTo(cli, sequence, nullptr, FlushCommand::hasReadLogs(cli), in onDataAvailable()
213 logMask, (int)pid, sequence.nsec(), timeout); in onDataAvailable()
215 if (sequence == log_time::EPOCH) { in onDataAvailable()
[all …]
Dlibaudit.c74 static int16_t sequence = 0; in audit_send() local
119 req.nlh.nlmsg_seq = ++sequence; in audit_send()
139 rc = (rc == 0) ? (int)sequence : rc; in audit_send()
143 if (sequence < 0) { in audit_send()
144 sequence = 0; in audit_send()
DLogBufferElement.h54 static atomic_int_fast64_t sequence; variable
DLogBufferElement.cpp34 atomic_int_fast64_t LogBufferElement::sequence(1); member in LogBufferElement
/system/tools/xsdc/tests/resources/nested_type/
Dnested_type.xsd4 <xs:sequence>
9 <xs:sequence>
15 <xs:sequence>
18 </xs:sequence>
29 </xs:sequence>
33 </xs:sequence>
/system/tools/xsdc/tests/resources/group/
Dgroup.xsd3 <xs:sequence>
6 </xs:sequence>
9 <xs:sequence>
11 </xs:sequence>
/system/tools/xsdc/tests/resources/predefined_types/
Dpredefined_types.xsd3 <xs:sequence>
15 </xs:sequence>
18 <xs:sequence>
28 </xs:sequence>
31 <xs:sequence>
46 </xs:sequence>
49 <xs:sequence>
60 </xs:sequence>
63 <xs:sequence>
99 </xs:sequence>
[all …]
/system/tools/xsdc/
DREADME.md17 <xs:sequence>
19 </xs:sequence>
29 <xs:sequence>
31 </xs:sequence>
54 <xs:sequence>
56 </xs:sequence>
66 <xs:sequence>
70 </xs:sequence>
167 "xsd:sequence": [
/system/tools/xsdc/tests/resources/reference/
Dreference.xsd6 <xs:sequence>
8 </xs:sequence>
/system/tools/xsdc/tests/resources/attr_group_simple/
Dattr_group_simple.xsd12 <xs:sequence>
14 </xs:sequence>
/system/vold/
DCheckpoint.cpp420 uint32_t sequence; member
573 if (index == 0 && ls.sequence != 0) { in restoreSector()
635 LOG(INFO) << action << " " << original_ls.sequence << " log sectors"; in cp_restoreCheckpoint()
637 for (int sequence = original_ls.sequence; sequence >= 0 && status.isOk(); sequence--) { in cp_restoreCheckpoint() local
655 if ((int)ls.sequence != sequence) { in cp_restoreCheckpoint()
656 status = error(EINVAL, "Expecting log sector " + std::to_string(sequence) + in cp_restoreCheckpoint()
657 " but got " + std::to_string(ls.sequence)); in cp_restoreCheckpoint()
661 LOG(INFO) << action << " from log sector " << ls.sequence; in cp_restoreCheckpoint()
/system/core/fastboot/
Dudp_test.cpp37 static std::string ErrorPacket(uint16_t sequence, const std::string& message = "", in ErrorPacket() argument
39 return std::string{kIdError, flags} + PacketValue(sequence) + message; in ErrorPacket()
43 static std::string QueryPacket(uint16_t sequence) { in QueryPacket() argument
44 return std::string{kIdDeviceQuery, kFlagNone} + PacketValue(sequence); in QueryPacket()
48 static std::string QueryPacket(uint16_t sequence, uint16_t new_sequence) { in QueryPacket() argument
49 return std::string{kIdDeviceQuery, kFlagNone} + PacketValue(sequence) + in QueryPacket()
54 static std::string InitPacket(uint16_t sequence, uint16_t version, uint16_t max_packet_size) { in InitPacket() argument
55 return std::string{kIdInitialization, kFlagNone} + PacketValue(sequence) + in InitPacket()
60 static std::string FastbootPacket(uint16_t sequence, const std::string& data = "", in FastbootPacket() argument
62 return std::string{kIdFastboot, flags} + PacketValue(sequence) + data; in FastbootPacket()
Dudp.cpp73 void Set(uint8_t id, uint16_t sequence, Flag flag);
86 void Header::Set(uint8_t id, uint16_t sequence, Flag flag) { in Set() argument
89 bytes_[kIndexSeqH] = sequence >> 8; in Set()
90 bytes_[kIndexSeqL] = sequence; in Set()
DREADME.md300 Seq # 2-byte packet sequence number (big-endian). The host will increment
302 corresponding sequence number in the response packets.
310 The host will not know the current sequence number, so the device must
311 respond to all query packets regardless of sequence number.
314 giving the next expected sequence number.
377 Given a next expected sequence number S and a received packet P, the device
382 else if P has sequence == S:
384 * create a response packet R with the same ID and sequence as P, containing
388 else if P has sequence == S - 1:
395 In the examples below, S indicates the starting client sequence number.
/system/extras/verity/
DBootSignature.java105 ASN1Sequence sequence = (ASN1Sequence) stream.readObject(); in BootSignature() local
107 formatVersion = (ASN1Integer) sequence.getObjectAt(0); in BootSignature()
112 certificate = sequence.getObjectAt(1); in BootSignature()
120 ASN1Sequence algId = (ASN1Sequence) sequence.getObjectAt(2); in BootSignature()
124 ASN1Sequence attrs = (ASN1Sequence) sequence.getObjectAt(3); in BootSignature()
128 this.signature = (DEROctetString) sequence.getObjectAt(4); in BootSignature()
/system/chre/host/msm/daemon/idl/
Dchre_slpi.idl33 long get_message_to_host(rout sequence<octet> buffer,
36 long deliver_message_from_host(in sequence<octet> message);
/system/tools/xsdc/tests/resources/simple_type/
Dsimple_type.xsd30 <xs:sequence>
34 </xs:sequence>
/system/core/liblog/
Dpmsg_reader.cpp384 size_t sequence, tag_len; in __android_log_pmsg_file_read() local
391 sequence = 0; in __android_log_pmsg_file_read()
416 while (sequence < content->entry.nsec) { in __android_log_pmsg_file_read()
424 sequence += ANDROID_LOG_PMSG_FILE_SEQUENCE; in __android_log_pmsg_file_read()
444 sequence = content->entry.nsec + ANDROID_LOG_PMSG_FILE_SEQUENCE; in __android_log_pmsg_file_read()
/system/connectivity/wificond/net/
Dnetlink_manager.cpp289 uint32_t sequence = packet.GetMessageSequence(); in SendMessageAndGetResponses() local
296 message_handlers_[sequence] = std::bind(AppendPacket, response, _1); in SendMessageAndGetResponses()
299 message_handlers_.find(sequence) != message_handlers_.end()) { in SendMessageAndGetResponses()
307 message_handlers_.erase(sequence); in SendMessageAndGetResponses()
311 message_handlers_.erase(sequence); in SendMessageAndGetResponses()
320 message_handlers_.erase(sequence); in SendMessageAndGetResponses()
Dnl80211_packet.h51 uint32_t sequence,
Dnl80211_packet.cpp38 uint32_t sequence, in NL80211Packet() argument
49 nl_header->nlmsg_seq = sequence; in NL80211Packet()
/system/apex/tests/testdata/
Dtrigger_watchdog.rc33 # Simulate a situation when userspace reboot fails during a shutdown sequence. This is a very crude
/system/core/libcutils/
Dtrace-dev.inc65 // All zero prop_info that has a sequence number of 0. This is easier than
75 * This is called when the sequence number of debug.atrace.tags.enableflags
/system/nfc/src/nfc/include/
Dllcp_int.h332 uint8_t ptype, uint8_t sequence);

12