HomeSort by relevance Sort by last modified time
    Searched defs:tag (Results 426 - 450 of 1167) sorted by null

<<11121314151617181920>>

  /external/u-boot/scripts/dtc/libfdt/
fdt.h 82 fdt32_t tag; member in struct:fdt_node_header
87 fdt32_t tag; member in struct:fdt_property
fdt_sw.c 181 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
238 prop->tag = cpu_to_fdt32(FDT_PROP);
262 uint32_t tag; local
281 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) {
282 if (tag == FDT_PROP) {
  /external/vboot_reference/firmware/stub/
tpm_lite_stub.c 116 /* Gets the tag field of a TPM command.
120 uint16_t tag; local
121 FromTpmUint16(buffer, &tag);
122 return (int) tag;
208 int tag, response_tag; local
237 tag = TpmTag(request);
240 (tag == TPM_TAG_RQU_COMMAND &&
242 (tag == TPM_TAG_RQU_AUTH1_COMMAND &&
244 (tag == TPM_TAG_RQU_AUTH2_COMMAND &&
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_logging.h 297 std::string tag; member in struct:webrtc::testing::bwe::Logging::State
  /frameworks/av/camera/tests/
VendorTagDescriptorTests.cpp 41 static bool ContainsTag(uint32_t* tagArray, size_t size, uint32_t tag) {
43 if (tag == tagArray[i]) return true;
103 // Ensure reasonable tag count
110 // Get all tag ids
117 uint32_t tag; local
119 // For each tag id, check whether type, section name, tag name match
120 tag = descTagArray[i];
121 EXPECT_CONTAINS_TAG(tag, opsTagArray);
122 EXPECT_EQ(vDesc->getTagType(tag), vOps->get_tag_type(vOps, tag))
162 uint32_t tag; local
    [all...]
  /frameworks/base/cmds/idmap2/idmap2/
Lookup.cpp 148 const auto tag = xml->FindTag("overlay"); local
149 if (!tag) {
150 return Error("failed to find <overlay> tag");
152 const auto iter = tag->find("targetPackage");
153 if (iter == tag->end()) {
  /external/guice/extensions/struts2/lib/
jsp-api-2.1.jar 
  /art/openjdkjvmti/
jvmti_weak_table-inl.h 90 bool JvmtiWeakTable<T>::Remove(art::ObjPtr<art::mirror::Object> obj, /* out */ T* tag) {
95 return RemoveLocked(self, obj, tag);
98 bool JvmtiWeakTable<T>::RemoveLocked(art::ObjPtr<art::mirror::Object> obj, T* tag) {
103 return RemoveLocked(self, obj, tag);
107 bool JvmtiWeakTable<T>::RemoveLocked(art::Thread* self, art::ObjPtr<art::mirror::Object> obj, T* tag) {
110 if (tag != nullptr) {
111 *tag = it->second;
127 return RemoveLocked(self, obj, tag);
229 T tag = it->second; local
232 tagged_objects_.emplace(art::GcRoot<art::mirror::Object>(target_obj), tag); local
    [all...]
  /bionic/libc/bionic/
fdsan.cpp 206 uint64_t android_fdsan_create_owner_tag(android_fdsan_owner_type type, uint64_t tag) {
207 if (tag == 0) {
217 result |= tag & mask;
221 const char* android_fdsan_get_tag_type(uint64_t tag) {
222 uint64_t type = tag >> 56;
255 uint64_t high_bits = tag >> 48;
264 uint64_t android_fdsan_get_tag_value(uint64_t tag) {
266 return static_cast<uint64_t>(static_cast<int64_t>(tag << 8) >> 8);
275 uint64_t tag = expected_tag; local
276 if (!atomic_compare_exchange_strong(&fde->close_tag, &tag, 0))
324 uint64_t tag = expected_tag; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
if_pppox.h 110 struct pppoe_tag tag[0]; member in struct:pppoe_hdr
  /bionic/libc/kernel/uapi/linux/netfilter_ipv6/
ip6t_srh.h 58 __u16 tag; member in struct:ip6t_srh
67 __u16 tag; member in struct:ip6t_srh1
  /bionic/libc/malloc_debug/tests/
malloc_debug_system_tests.cpp 164 char* tag = msg_str + 1; local
165 msg_str = tag + strlen(tag) + 1;
  /cts/hostsidetests/jvmti/tagging/app/src/android/jvmti/cts/
JvmtiTaggingTest.java 85 // to compare to. We use index % 10 as the tag.
190 long tag; field in class:JvmtiTaggingTest.Pair
194 tag = t;
201 return tag == p.tag && (p.obj == null ? this.obj == null : p.obj.equals(this.obj));
209 if (tag != p.tag) {
210 return Long.compare(tag, p.tag);
238 return "<" + obj + ";" + tag + ">"
    [all...]
  /cts/tests/DropBoxManager/src/android/dropboxmanager/cts/
DropBoxTests.java 84 String tag; field in class:DropBoxTests.DropBoxEntryAddedData
94 data.tag = intent.getStringExtra(DropBoxManager.EXTRA_TAG);
98 if (ENABLED_TAG.equals(data.tag)) {
101 } else if (LOW_PRIORITY_TAG.equals(data.tag)) {
104 } else if (ANOTHER_LOW_PRIORITY_TAG.equals(data.tag)) {
136 private void sendExcessiveDropBoxEntries(String tag, int count, long delayPerEntry)
139 mDropBoxManager.addText(tag, String.valueOf(i++));
142 mDropBoxManager.addText(tag, String.valueOf(i));
147 * A single DropBox entry for a low priority tag should have their
175 * Many contemporary DropBox entries for a low priority tag should have thei
    [all...]
  /cts/tests/tests/location/src/android/location/cts/asn1/base/
Asn1Choice.java 32 * Dummy non-tag used as default tag for CHOICE, which reflects the BER encoding idea
34 * that it doesn't matter whether the choice object tag is designated as IMPLICIT or
50 throw new UnsupportedOperationException("This is not a real tag.");
96 * @param tag the tag read from the input stream (less the "constructed" bit)
98 * @throws IllegalArgumentException if the tag is not recognized. This currently includes
101 protected abstract ChoiceComponent createAndSetValue(Asn1Tag tag);
158 Asn1Tag tag = Asn1Tag.peekTag(buf); local
159 ChoiceComponent select = createAndSetValue(tag);
185 Asn1Tag tag = Asn1Tag.readTag(buf); local
    [all...]
Asn1Sequence.java 58 Asn1Tag tag = component.getTag(); local
60 if (tag == null) {
65 length += tag.getTaggedLength(valueLen);
104 Asn1Tag tag = Asn1Tag.readTag(buf); local
105 SequenceComponent component = getComponent(components, tag);
119 buf.position(bufStartPos); // rewind to before tag
140 * Returns the child component that can start with the specified tag.
141 * @throws NoSuchElementException if no child component can start with the tag
144 Asn1Tag tag) {
146 if (component.getPossibleFirstTags().contains(tag)) {
    [all...]
Asn1SequenceOf.java 84 Asn1Tag tag = Asn1Tag.readTag(buf); local
88 checkTag(tag, value.getTag());
90 // read inner tag + length
95 checkTag(tag, value.getDefaultTag());
Asn1Tag.java 27 * Represents the tag of (class and number) of an ASN.1 type.
118 * Returns the tag at the head of the buffer without advancing the position.
125 * Returns the value of the tag octet - including class and tag ID but excluding
190 * Returns the tag with the specified value (including tag and length, excluding "constructed"
203 * Returns the tag corresponding to the given class and number.
205 * <p>By convention, null is returned for impossible tag class < 0. Used in code generation.
219 Asn1Tag tag = (Asn1Tag) o; local
220 return tagClass == tag.tagClass && tagNumber == tag.tagNumber
    [all...]
  /cts/tests/tests/location/src/android/location/cts/asn1/supl2/rrlp_components/
GANSSAuxiliaryInformation.java 56 for (Asn1Tag tag : select.getPossibleFirstTags()) {
58 if ((select0 = tagToSelection.put(tag, select)) != null) {
60 "GANSSAuxiliaryInformation: " + tag + " maps to both " + select0 + " and " + select);
142 @Override protected ChoiceComponent createAndSetValue(Asn1Tag tag) {
143 Select select = tagToSelection.get(tag);
145 throw new IllegalArgumentException("Unknown selection tag: " + tag);
173 return tag == null ? GANSS_ID1.getPossibleFirstTags() : ImmutableList.of(tag);
191 return tag == null ? GANSS_ID3.getPossibleFirstTags() : ImmutableList.of(tag)
202 @Nullable final Asn1Tag tag; field in class:GANSSAuxiliaryInformation.Select
293 @Nullable private final Asn1Tag tag; field in class:GANSSAuxiliaryInformation.Extend
    [all...]
OTD_MsrsOfOtherSets.java 56 for (Asn1Tag tag : select.getPossibleFirstTags()) {
58 if ((select0 = tagToSelection.put(tag, select)) != null) {
60 "OTD_MsrsOfOtherSets: " + tag + " maps to both " + select0 + " and " + select);
142 @Override protected ChoiceComponent createAndSetValue(Asn1Tag tag) {
143 Select select = tagToSelection.get(tag);
145 throw new IllegalArgumentException("Unknown selection tag: " + tag);
173 return tag == null ? OTD_Measurement.getPossibleFirstTags() : ImmutableList.of(tag);
191 return tag == null ? OTD_MeasurementWithID.getPossibleFirstTags() : ImmutableList.of(tag)
202 @Nullable final Asn1Tag tag; field in class:OTD_MsrsOfOtherSets.Select
293 @Nullable private final Asn1Tag tag; field in class:OTD_MsrsOfOtherSets.Extend
    [all...]
SystemInfoAssistBTS.java 56 for (Asn1Tag tag : select.getPossibleFirstTags()) {
58 if ((select0 = tagToSelection.put(tag, select)) != null) {
60 "SystemInfoAssistBTS: " + tag + " maps to both " + select0 + " and " + select);
142 @Override protected ChoiceComponent createAndSetValue(Asn1Tag tag) {
143 Select select = tagToSelection.get(tag);
145 throw new IllegalArgumentException("Unknown selection tag: " + tag);
173 return tag == null ? SystemInfoAssistBTS.notPresentType.getPossibleFirstTags() : ImmutableList.of(tag);
191 return tag == null ? AssistBTSData.getPossibleFirstTags() : ImmutableList.of(tag)
202 @Nullable final Asn1Tag tag; field in class:SystemInfoAssistBTS.Select
372 @Nullable private final Asn1Tag tag; field in class:SystemInfoAssistBTS.Extend
    [all...]
SystemInfoAssistBTS_R98_ExpOTD.java 56 for (Asn1Tag tag : select.getPossibleFirstTags()) {
58 if ((select0 = tagToSelection.put(tag, select)) != null) {
60 "SystemInfoAssistBTS_R98_ExpOTD: " + tag + " maps to both " + select0 + " and " + select);
142 @Override protected ChoiceComponent createAndSetValue(Asn1Tag tag) {
143 Select select = tagToSelection.get(tag);
145 throw new IllegalArgumentException("Unknown selection tag: " + tag);
173 return tag == null ? SystemInfoAssistBTS_R98_ExpOTD.notPresentType.getPossibleFirstTags() : ImmutableList.of(tag);
191 return tag == null ? AssistBTSData_R98_ExpOTD.getPossibleFirstTags() : ImmutableList.of(tag)
202 @Nullable final Asn1Tag tag; field in class:SystemInfoAssistBTS_R98_ExpOTD.Select
372 @Nullable private final Asn1Tag tag; field in class:SystemInfoAssistBTS_R98_ExpOTD.Extend
    [all...]
  /cts/tests/tests/location/src/android/location/cts/asn1/supl2/supl_report/
TimeStamp.java 58 for (Asn1Tag tag : select.getPossibleFirstTags()) {
60 if ((select0 = tagToSelection.put(tag, select)) != null) {
62 "TimeStamp: " + tag + " maps to both " + select0 + " and " + select);
144 @Override protected ChoiceComponent createAndSetValue(Asn1Tag tag) {
145 Select select = tagToSelection.get(tag);
147 throw new IllegalArgumentException("Unknown selection tag: " + tag);
175 return tag == null ? TimeStamp.absoluteTimeType.getPossibleFirstTags() : ImmutableList.of(tag);
193 return tag == null ? TimeStamp.relativeTimeType.getPossibleFirstTags() : ImmutableList.of(tag)
204 @Nullable final Asn1Tag tag; field in class:TimeStamp.Select
456 @Nullable private final Asn1Tag tag; field in class:TimeStamp.Extend
    [all...]
  /cts/tests/tests/location/src/android/location/cts/asn1/supl2/supl_response/
SETAuthKey.java 57 for (Asn1Tag tag : select.getPossibleFirstTags()) {
59 if ((select0 = tagToSelection.put(tag, select)) != null) {
61 "SETAuthKey: " + tag + " maps to both " + select0 + " and " + select);
143 @Override protected ChoiceComponent createAndSetValue(Asn1Tag tag) {
144 Select select = tagToSelection.get(tag);
146 throw new IllegalArgumentException("Unknown selection tag: " + tag);
174 return tag == null ? SETAuthKey.shortKeyType.getPossibleFirstTags() : ImmutableList.of(tag);
192 return tag == null ? SETAuthKey.longKeyType.getPossibleFirstTags() : ImmutableList.of(tag)
203 @Nullable final Asn1Tag tag; field in class:SETAuthKey.Select
458 @Nullable private final Asn1Tag tag; field in class:SETAuthKey.Extend
    [all...]
  /cts/tests/tests/location/src/android/location/cts/asn1/supl2/supl_triggered_start/
TriggerParams.java 56 for (Asn1Tag tag : select.getPossibleFirstTags()) {
58 if ((select0 = tagToSelection.put(tag, select)) != null) {
60 "TriggerParams: " + tag + " maps to both " + select0 + " and " + select);
142 @Override protected ChoiceComponent createAndSetValue(Asn1Tag tag) {
143 Select select = tagToSelection.get(tag);
145 throw new IllegalArgumentException("Unknown selection tag: " + tag);
173 return tag == null ? PeriodicParams.getPossibleFirstTags() : ImmutableList.of(tag);
191 return tag == null ? AreaEventParams.getPossibleFirstTags() : ImmutableList.of(tag)
202 @Nullable final Asn1Tag tag; field in class:TriggerParams.Select
293 @Nullable private final Asn1Tag tag; field in class:TriggerParams.Extend
    [all...]

Completed in 1348 milliseconds

<<11121314151617181920>>