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

<<11121314151617181920>>

  /external/boringssl/src/ssl/test/
fuzzer.h 465 uint16_t tag; local
466 if (!CBS_get_u16(cbs, &tag)) {
469 switch (tag) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
GeneralName.java 60 private int tag; field in class:GeneralName
70 this.tag = 4;
77 this.tag = 4;
108 int tag,
112 this.tag = tag;
116 * Create a GeneralName for the given tag from the passed in String.
134 * @param tag tag number
139 int tag,
185 int tag = tagObj.getTagNo(); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
CertificateFactory.java 235 int tag = pis.read(); local
237 if (tag == -1)
249 ((PushbackInputStream) pis).unread(tag);
253 if (tag != 0x30) // assume ascii PEM encoded.
344 int tag = pis.read(); local
346 if (tag == -1)
352 if (tag != 0x30) // assume ascii PEM encoded.
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/
GeneralName.java 66 private int tag; field in class:GeneralName
76 this.tag = 4;
83 this.tag = 4;
115 int tag,
119 this.tag = tag;
123 * Create a GeneralName for the given tag from the passed in String.
141 * @param tag tag number
147 int tag,
193 int tag = tagObj.getTagNo(); local
    [all...]
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/asymmetric/x509/
CertificateFactory.java 237 int tag = pis.read(); local
239 if (tag == -1)
251 ((PushbackInputStream) pis).unread(tag);
255 if (tag != 0x30) // assume ascii PEM encoded.
346 int tag = pis.read(); local
348 if (tag == -1)
354 if (tag != 0x30) // assume ascii PEM encoded.
  /external/clang/test/CXX/class/class.union/
p1.cpp 115 bool tag; member in struct:Either
121 Either(const A& a) : tag(true), a(a) {}
122 Either(const B& b) : tag(false), b(b) {}
  /external/cldr/tools/java/org/unicode/cldr/icu/
RBNFWriter.java 137 String tag = parts[0].substring(idStart); local
138 out.print(" <ruleset type=\"" + tag + "\"");
  /external/compiler-rt/lib/lsan/
lsan_allocator.cc 30 ChunkTag tag : 2; member in struct:__lsan::ChunkMetadata
75 m->tag = DisabledInThisThread() ? kIgnored : kDirectlyLeaked;
183 ChunkTag LsanMetadata::tag() const { function in class:__lsan::LsanMetadata
184 return reinterpret_cast<ChunkMetadata *>(metadata_)->tag;
188 reinterpret_cast<ChunkMetadata *>(metadata_)->tag = value;
209 if (m->tag == kIgnored)
211 m->tag = kIgnored;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stackdepot.cc 26 u32 tag; member in struct:__sanitizer::StackDepotNode
41 if ((hash & kHashMask) != hash_bits || args.size != size || args.tag != tag)
77 tag = args.tag;
81 return args_type(&stack[0], size, tag);
  /external/curl/lib/
x509asn1.h 87 unsigned char tag; /* ASN.1 element tag. */ member in struct:__anon18607
  /external/dtc/
fdtdump.c 25 static const char *tagname(uint32_t tag)
36 if (tag < ARRAY_SIZE(names))
37 if (names[tag])
38 return names[tag];
58 uint32_t tag; local
99 while ((tag = fdt32_to_cpu(GET_CELL(p))) != FDT_END) {
101 dumpf("%04zx: tag: 0x%08x (%s)\n",
102 (uintptr_t)p - blob_off - 4, tag, tagname(tag));
104 if (tag == FDT_BEGIN_NODE)
    [all...]
fdtget.c 153 uint32_t tag; /* current tag */ local
159 tag = fdt_next_tag(blob, node, &nextoffset);
160 switch (tag) {
188 printf("Unknown tag 0x%08X\n", tag);
  /external/dtc/libfdt/
fdt_ro.c 136 uint32_t tag; local
140 tag = fdt_next_tag(fdt, offset, &nextoffset);
142 switch (tag) {
153 } while (tag == FDT_NOP);
fdt_rw.c 243 (*prop)->tag = cpu_to_fdt32(FDT_PROP);
340 uint32_t tag; local
355 tag = fdt_next_tag(fdt, offset, &nextoffset);
356 } while ((tag == FDT_PROP) || (tag == FDT_NOP));
365 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
  /external/e2fsprogs/lib/blkid/
tag.c 2 * tag.c - allocation/initialization/free routines for tag structs
23 blkid_tag tag; local
25 if (!(tag = (blkid_tag) calloc(1, sizeof(struct blkid_struct_tag))))
28 INIT_LIST_HEAD(&tag->bit_tags);
29 INIT_LIST_HEAD(&tag->bit_names);
31 return tag;
35 void blkid_debug_dump_tag(blkid_tag tag)
37 if (!tag) {
38 printf(" tag: NULL\n")
88 blkid_tag tag; local
301 blkid_tag tag; local
    [all...]
  /external/freetype/src/pfr/
pfrgload.c 183 FT_Byte* tag = (FT_Byte*)outline->tags + outline->n_points; local
189 tag[0] = FT_CURVE_TAG_CUBIC;
190 tag[1] = FT_CURVE_TAG_CUBIC;
191 tag[2] = FT_CURVE_TAG_ON;
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
ViewTarget.java 38 private static final String TAG = "ViewTarget";
87 * tag is cleared or set to another object type, Glide will not be able to retrieve and cancel previous loads
96 Object tag = view.getTag(); local
98 if (tag != null) {
99 if (tag instanceof Request) {
100 request = (Request) tag;
170 if (Log.isLoggable(TAG, Log.WARN)) {
171 Log.w(TAG, "Trying to load image into ImageView using WRAP_CONTENT, defaulting to screen"
214 if (Log.isLoggable(TAG, Log.VERBOSE)) {
215 Log.v(TAG, "OnGlobalLayoutListener called listener=" + this)
    [all...]
  /external/grpc-grpc/include/grpcpp/impl/codegen/
async_stream.h 42 virtual void StartCall(void* tag) = 0;
45 /// will be notified by \a tag on the associated completion queue.
49 /// \param[in] tag Tag identifying this request.
50 virtual void ReadInitialMetadata(void* tag) = 0;
67 /// The tag will be returned when either:
77 /// \param[in] tag Tag identifying this request.
79 virtual void Finish(Status* status, void* tag) = 0;
89 /// tag on the associated completion queue
217 StartCallInternal(tag); variable
365 StartCallInternal(tag); variable
532 StartCallInternal(tag); variable
    [all...]
  /external/grpc-grpc/src/ruby/ext/grpc/
rb_server.c 56 void* tag = &ev; local
60 grpc_server_shutdown_and_notify(server->wrapped, server->queue, tag);
61 ev = rb_completion_queue_pluck(server->queue, tag, deadline, NULL);
65 server->queue, tag, gpr_inf_future(GPR_CLOCK_REALTIME), NULL);
199 void* tag = (void*)&st; local
213 call_queue, s->queue, tag);
222 ev = rb_completion_queue_pluck(s->queue, tag,
  /external/grpc-grpc/test/core/bad_client/
bad_client.cc 309 static void* tag(intptr_t t) { return (void*)t; } function
324 &request_metadata_recv, cq, cq, tag(101));
326 CQ_EXPECT_COMPLETION(cqv, tag(101), 1);
  /external/grpc-grpc/test/core/end2end/
bad_server_response_test.cc 93 static void* tag(intptr_t t) { return (void*)t; } function
201 tag(1), nullptr);
205 CQ_EXPECT_COMPLETION(cqv, tag(1), 1);
cq_verifier.cc 52 void* tag; member in struct:expectation
182 if (is_probably_integer(e->tag)) {
183 gpr_asprintf(&tmp, "tag(%" PRIdPTR ") ", (intptr_t)e->tag);
185 gpr_asprintf(&tmp, "%p ", e->tag);
262 if (e->tag == ev.tag) {
308 grpc_completion_type type, void* tag, bool success) {
313 e->tag = tag;
    [all...]
dualstack_socket_test.cc 44 static void* tag(intptr_t i) { return (void*)i; } function
202 error = grpc_call_start_batch(c, ops, static_cast<size_t>(op - ops), tag(1),
209 &request_metadata_recv, cq, cq, tag(101));
211 CQ_EXPECT_COMPLETION(cqv, tag(101), 1);
232 tag(102), nullptr);
235 CQ_EXPECT_COMPLETION(cqv, tag(102), 1);
236 CQ_EXPECT_COMPLETION(cqv, tag(1), 1);
253 CQ_EXPECT_COMPLETION(cqv, tag(1), 1);
270 grpc_server_shutdown_and_notify(server, shutdown_cq, tag(1000));
271 GPR_ASSERT(grpc_completion_queue_pluck(shutdown_cq, tag(1000)
    [all...]
goaway_server_test.cc 42 static void* tag(intptr_t i) { return (void*)i; } function
206 tag(0x101), nullptr));
219 tag(0x102), nullptr));
233 &request_metadata1, cq, cq, tag(0x301)));
238 CQ_EXPECT_COMPLETION(cqv, tag(0x101), 1);
239 CQ_EXPECT_COMPLETION(cqv, tag(0x301), 1);
246 tag(0x9999));
257 tag(0x302), nullptr));
262 grpc_server_shutdown_and_notify(server1, cq, tag(0xdead1));
263 CQ_EXPECT_COMPLETION(cqv, tag(0x9999), 1)
    [all...]
h2_ssl_cert_test.cc 257 static void* tag(intptr_t t) { return (void*)t; } function in namespace:grpc::testing
276 grpc_server_shutdown_and_notify(f->server, f->cq, tag(1000));
317 error = grpc_call_start_batch(c, ops, static_cast<size_t>(op - ops), tag(1),
321 CQ_EXPECT_COMPLETION(cqv, tag(1), expected_result == SUCCESS);

Completed in 1929 milliseconds

<<11121314151617181920>>