HomeSort by relevance Sort by last modified time
    Searched defs:checkTag (Results 1 - 8 of 8) sorted by null

  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Constructed.java 48 public final boolean checkTag(int identifier) {
ASN1Primitive.java 44 public final boolean checkTag(int identifier) {
ASN1Implicit.java 76 if (type.checkTag(type.id)) {
77 if (type.checkTag(type.constrId)) {
91 public final boolean checkTag(int identifier) {
103 if (!checkTag(in.tag)) {
ASN1Any.java 68 public final boolean checkTag(int identifier) {
ASN1Choice.java 255 if (t.checkTag(t.id)) {
260 if (t.checkTag(t.constrId)) {
296 public final boolean checkTag(int identifier) {
ASN1StringType.java 80 public final boolean checkTag(int identifier) {
ASN1Type.java 124 public abstract boolean checkTag(int identifier);
  /system/extras/tests/iptables/qtaguid/
socketTag.cpp 43 bool checkTag(uint64_t tag, uid_t uid);
108 if (!checkTag(tag, getuid())) {
121 /* checkTag() also tries to lookup the socket address in the kernel and
129 bool SockInfo::checkTag(uint64_t acct_tag, uid_t uid) {
264 EXPECT_TRUE(sock0.checkTag(tag, fake_uid2))<< "Unexpected results: tag not found";
270 EXPECT_TRUE(sock0.checkTag(valid_tag2 + (((uint64_t)max_tags - 1) << 32),
275 EXPECT_FALSE(sock0.checkTag(valid_tag2 + (((uint64_t)max_tags - 1) << 32), fake_uid2))
281 EXPECT_FALSE(sock0.checkTag(valid_tag2 + ((uint64_t)max_tags << 32), fake_uid2))
292 EXPECT_TRUE(sock0.checkTag(valid_tag2 + (((uint64_t)max_tags + 1) << 32), fake_uid2))
296 EXPECT_FALSE(sock0.checkTag(valid_tag2 + (((uint64_t)max_tags + 2) << 32), fake_uid2)
    [all...]

Completed in 52 milliseconds