HomeSort by relevance Sort by last modified time
    Searched defs:sequence (Results 1 - 25 of 782) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/fio/lib/
seqlock.h 7 volatile int sequence; member in struct:seqlock
12 s->sequence = 0;
20 seq = s->sequence;
33 return s->sequence != seq;
38 s->sequence++;
45 s->sequence++;
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
NodeId.java 19 * Enum for the three basic YAML types: scalar, sequence and mapping.
22 scalar, sequence, mapping, anchor; enum constant in enum:NodeId
  /cts/tests/security/src/android/keystore/cts/
AttestationPackageInfo.java 39 "Expected sequence for AttestationPackageInfo, found "
43 ASN1Sequence sequence = (ASN1Sequence) asn1Encodable; local
46 sequence.getObjectAt(PACKAGE_NAME_INDEX));
52 version = Asn1Utils.getLongFromAsn1(sequence.getObjectAt(VERSION_INDEX));
RootOfTrust.java 42 throw new CertificateParsingException("Expected sequence for root of trust, found "
46 ASN1Sequence sequence = (ASN1Sequence) asn1Encodable; local
48 Asn1Utils.getByteArrayFromAsn1(sequence.getObjectAt(VERIFIED_BOOT_KEY_INDEX));
49 deviceLocked = Asn1Utils.getBooleanFromAsn1(sequence.getObjectAt(DEVICE_LOCKED_INDEX));
51 Asn1Utils.getIntegerFromAsn1(sequence.getObjectAt(VERIFIED_BOOT_STATE_INDEX));
  /device/generic/goldfish/wifi/wifi_hal/
netlinkmessage.cpp 37 uint32_t sequence)
44 header->nlmsg_seq = sequence;
70 uint32_t NetlinkMessage::sequence() const { function in class:NetlinkMessage
  /external/mesa3d/src/gallium/state_trackers/clover/core/
queue.cpp 96 command_queue::sequence(hard_event &ev) { function in class:command_queue
  /external/volley/src/test/java/com/android/volley/
RequestTest.java 30 int sequence = 0; local
32 low.setSequence(sequence++);
34 low2.setSequence(sequence++);
36 high.setSequence(sequence++);
38 immediate.setSequence(sequence++);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/xcb/
bigreq.h 30 unsigned int sequence; /**< */ member in struct:xcb_big_requests_enable_cookie_t
51 uint16_t sequence; /**< */ member in struct:xcb_big_requests_enable_reply_t
  /external/google-tv-pairing-protocol/cpp/tests/polo/pairing/
clientpairingsessiontest.cc 74 InSequence sequence; local
100 InSequence sequence; local
114 InSequence sequence; local
129 InSequence sequence; local
143 InSequence sequence; local
serverpairingsessiontest.cc 69 InSequence sequence; local
91 InSequence sequence; local
99 InSequence sequence; local
109 InSequence sequence; local
124 InSequence sequence; local
pairingsessiontest.cc 96 InSequence sequence; local
136 InSequence sequence; local
150 InSequence sequence; local
190 InSequence sequence; local
220 InSequence sequence; local
  /external/libmojo/device/bluetooth/bluez/
bluetooth_service_attribute_value_bluez.h 20 // fixed types, an attribute can also be of type sequence, which means
25 // will be the string representation of the UUID. For a sequence, it
29 enum Type { NULLTYPE = 0, UINT, INT, UUID, STRING, BOOL, SEQUENCE, URL };
31 using Sequence = std::vector<BluetoothServiceAttributeValueBlueZ>;
38 std::unique_ptr<Sequence> sequence);
47 const Sequence& sequence() const { return *sequence_.get(); } function in class:bluez::BluetoothServiceAttributeValueBlueZ
54 std::unique_ptr<Sequence> sequence_;
  /external/linux-kselftest/tools/testing/selftests/powerpc/dscr/
dscr_default_test.c 18 static unsigned long sequence; variable
30 s1 = READ_ONCE(sequence);
40 s2 = sequence;
90 sequence++;
100 sequence++;
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_fence.h 27 uint32_t sequence; member in struct:nouveau_fence
nouveau_fence.c 77 screen->fence.emit(&screen->base, &fence->sequence);
116 u32 sequence = screen->fence.update(&screen->base); local
118 if (screen->fence.sequence_ack == sequence)
120 screen->fence.sequence_ack = sequence;
124 sequence = fence->sequence;
131 if (sequence == screen->fence.sequence_ack)
223 fence->sequence,
224 screen->fence.sequence_ack, screen->fence.sequence);
  /packages/apps/DocumentsUI/src/com/android/documentsui/inspector/
GpsCoordinatesTextClassifier.java 68 CharSequence sequence = text.subSequence(start, end); local
69 if (isGeoSequence(sequence)) {
72 .setData(Uri.parse(String.format("geo:0,0?q=%s", sequence)));
78 .setText(sequence.toString())
  /system/core/logd/
libaudit.c 70 * This function returns a positive sequence number on success, else -errno.
74 static int16_t sequence = 0; local
91 * to always blindly increment the sequence number
108 * Only increment the sequence number on a guarantee
111 * Also, the sequence is defined as a u32 in the kernel
119 req.nlh.nlmsg_seq = ++sequence;
138 /* If the ack failed, return the error, else return the sequence number */
139 rc = (rc == 0) ? (int)sequence : rc;
142 /* Don't let sequence roll to negative */
143 if (sequence < 0)
    [all...]
  /device/google/cuttlefish_common/guest/hals/gralloc/legacy/
gralloc.cpp 57 static int sequence = 0; local
75 "gralloc-%d.%d", getpid(), sequence++).string(),
  /external/boringssl/src/crypto/evp/
evp_asn1.c 270 // num_elements parses one SEQUENCE from |in| and returns the number of elements
273 CBS cbs, sequence; local
276 if (!CBS_get_asn1(&cbs, &sequence, CBS_ASN1_SEQUENCE)) {
281 while (CBS_len(&sequence) > 0) {
282 if (!CBS_get_any_asn1_element(&sequence, NULL, NULL, NULL)) {
  /external/boringssl/src/ssl/
dtls_record.cc 152 // dtls1_bitmap_record updates |bitmap| to record receipt of sequence number
154 // this function on a stale sequence number.
195 uint8_t sequence[8]; local
199 !CBS_copy_bytes(&cbs, sequence, 8) ||
225 uint16_t epoch = (((uint16_t)sequence[0]) << 8) | sequence[1];
227 dtls1_bitmap_should_discard(&ssl->d1->bitmap, sequence)) {
238 out, type, version, sequence,
259 dtls1_bitmap_record(&ssl->d1->bitmap, sequence);
  /external/google-tv-pairing-protocol/cpp/tests/polo/wire/protobuf/
protobufwireadaptertest.cc 118 InSequence sequence; local
125 InSequence sequence; local
150 InSequence sequence; local
168 InSequence sequence; local
218 InSequence sequence; local
239 InSequence sequence; local
258 InSequence sequence; local
283 InSequence sequence; local
308 InSequence sequence; local
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
CsmElement.java 47 static CsmElement sequence(CsmElement... elements) { method in interface:CsmElement
143 return sequence(token(GeneratedJavaParserConstants.LBRACE), indent(), content, unindent(), token(GeneratedJavaParserConstants.RBRACE));
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_query_hw.h 25 uint32_t sequence; member in struct:nv50_hw_query
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_query_hw.h 25 uint32_t sequence; member in struct:nvc0_hw_query
  /external/selinux/libselinux/src/
sestatus.c 25 uint32_t sequence; /* sequence number of seqlock logic */ member in struct:selinux_status_t
51 * seqlock logic. Since selinux_status->sequence is an odd value during
54 * The sequence is almost even number.
71 seqno = status->sequence;
84 * Because `selinux_status->sequence' shall be always incremented on
148 /* sequence must not be changed during references */
185 /* sequence must not be changed during references */
216 /* sequence must not be changed during references */

Completed in 401 milliseconds

1 2 3 4 5 6 7 8 91011>>