/aosp_15_r20/external/cronet/net/tools/dafsa/ |
H A D | make_dafsa_unittest.py | 276 node6 = ( 'f', [ None ] ) 277 node5 = ( 'e', [ node6 ] ) 298 node6 = ( 'f', [ None ] ) 299 node5 = ( 'e', [ node6 ] ) 427 node6 = ( 'f', [ node7 ] ) 429 node4 = ( 'd', [ node6 ] ) 430 node3 = ( 'c', [ node6 ] ) 482 node6 = ( 'e', [ None ] ) 484 node4 = ( 'b', [ node5, node6 ] ) 559 node6 = ( 'a', [ None ] ) [all …]
|
/aosp_15_r20/build/make/tools/aconfig/aconfig_storage_file/tests/srcs/ |
H A D | FlagTableTest.java | 54 FlagTable.Node node6 = flagTable.get(1, "enabled_ro"); in testFlagTable_rightNode() local 63 assertEquals("enabled_ro", node6.getFlagName()); in testFlagTable_rightNode() 72 assertEquals(1, node6.getPackageId()); in testFlagTable_rightNode() 81 assertEquals(FlagType.ReadOnlyBoolean, node6.getFlagType()); in testFlagTable_rightNode() 90 assertEquals(2, node6.getFlagIndex()); in testFlagTable_rightNode() 99 assertEquals(-1, node6.getNextOffset()); in testFlagTable_rightNode()
|
/aosp_15_r20/external/selinux/libsepol/src/ |
H A D | nodes.c | 43 memcpy(tmp_node->u.node6.addr, addr_buf, addr_bsize); in node_from_record() 44 memcpy(tmp_node->u.node6.mask, mask_buf, mask_bsize); in node_from_record() 114 (const char *)&node->u.node6.addr, in node_to_record() 119 (const char *)&node->u.node6.mask, in node_to_record() 203 unsigned int *addr2 = c->u.node6.addr; in sepol_node_exists() 204 unsigned int *mask2 = c->u.node6.mask; in sepol_node_exists() 266 unsigned int *addr2 = c->u.node6.addr; in sepol_node_query() 267 unsigned int *mask2 = c->u.node6.mask; in sepol_node_query()
|
H A D | kernel_to_common.c | 472 rc = memcmp(&(*aa)->u.node6.mask, &(*bb)->u.node6.mask, sizeof((*aa)->u.node6.mask)); in node6_data_cmp() 479 return memcmp(&(*aa)->u.node6.addr, &(*bb)->u.node6.addr, sizeof((*aa)->u.node6.addr)); in node6_data_cmp()
|
H A D | kernel_to_conf.c | 2760 struct ocontext *node6; in write_selinux_node6_rules_to_conf() local 2766 for (node6 = pdb->ocontexts[6]; node6 != NULL; node6 = node6->next) { in write_selinux_node6_rules_to_conf() 2767 if (inet_ntop(AF_INET6, &node6->u.node6.addr, addr, INET6_ADDRSTRLEN) == NULL) { in write_selinux_node6_rules_to_conf() 2773 if (inet_ntop(AF_INET6, &node6->u.node6.mask, mask, INET6_ADDRSTRLEN) == NULL) { in write_selinux_node6_rules_to_conf() 2779 ctx = context_to_str(pdb, &node6->context[0]); in write_selinux_node6_rules_to_conf()
|
H A D | expand.c | 2261 n->u.node6.addr[j] = c->u.node6.addr[j]; in ocontext_copy_selinux() 2263 n->u.node6.mask[j] = c->u.node6.mask[j]; in ocontext_copy_selinux()
|
H A D | services.c | 2128 if (match_ipv6_addrmask(addrp, c->u.node6.addr, in sepol_node_sid() 2129 c->u.node6.mask)) in sepol_node_sid()
|
H A D | write.c | 1575 buf[j] = c->u.node6.addr[j]; /* network order */ in ocontext_write_selinux() 1577 buf[j + 4] = c->u.node6.mask[j]; /* network order */ in ocontext_write_selinux()
|
H A D | kernel_to_cil.c | 2918 if (inet_ntop(AF_INET6, &node->u.node6.addr, addr, INET6_ADDRSTRLEN) == NULL) { in write_selinux_node6_rules_to_cil() 2924 if (inet_ntop(AF_INET6, &node->u.node6.mask, mask, INET6_ADDRSTRLEN) == NULL) { in write_selinux_node6_rules_to_cil()
|
H A D | module_to_cil.c | 2802 if (inet_ntop(AF_INET6, &node->u.node6.addr, addr, INET6_ADDRSTRLEN) == NULL) { in ocontext_selinux_node6_to_cil() 2808 if (inet_ntop(AF_INET6, &node->u.node6.mask, mask, INET6_ADDRSTRLEN) == NULL) { in ocontext_selinux_node6_to_cil()
|
H A D | policydb.c | 3087 c->u.node6.addr[k] = buf[k]; in ocontext_read_selinux() 3090 c->u.node6.mask[k] = buf[k + 4]; in ocontext_read_selinux()
|
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/graph/ |
H A D | ElementOrderTest.java | 205 ComparableSubClass node6 = new ComparableSubClass(6); in customComparable() local 210 graph.addNode(node6); in customComparable() 214 assertThat(graph.nodes()).containsExactly(node2, node4, node6, node8).inOrder(); in customComparable()
|
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/graph/ |
H A D | ElementOrderTest.java | 205 ComparableSubClass node6 = new ComparableSubClass(6); in customComparable() local 210 graph.addNode(node6); in customComparable() 214 assertThat(graph.nodes()).containsExactly(node2, node4, node6, node8).inOrder(); in customComparable()
|
/aosp_15_r20/external/selinux/checkpolicy/ |
H A D | policy_define.c | 5546 if (memcmp(&newc->u.node6.mask, &c->u.node6.mask, 16) == 0 && in insert_ipv6_node() 5547 memcmp(&newc->u.node6.addr, &c->u.node6.addr, 16) == 0) { in insert_ipv6_node() 5549 inet_ntop(AF_INET6, &newc->u.node6.addr, addr, INET6_ADDRSTRLEN) ?: "<invalid>", in insert_ipv6_node() 5550 inet_ntop(AF_INET6, &newc->u.node6.mask, mask, INET6_ADDRSTRLEN) ?: "<invalid>"); in insert_ipv6_node() 5556 if (memcmp(&newc->u.node6.mask, &c->u.node6.mask, 16) > 0) in insert_ipv6_node() 5634 memcpy(&newc->u.node6.addr[0], &addr.s6_addr[0], 16); in define_ipv6_node_context() 5635 memcpy(&newc->u.node6.mask[0], &mask.s6_addr[0], 16); in define_ipv6_node_context() 5712 memcpy(&newc->u.node6.addr[0], &addr.s6_addr[0], 16); in define_ipv6_cidr_node_context() 5713 memcpy(&newc->u.node6.mask[0], &mask.s6_addr[0], 16); in define_ipv6_cidr_node_context()
|
/aosp_15_r20/external/dtc/tests/ |
H A D | references.dts | 37 node6 {
|
H A D | multilabel.dts | 45 node6 {
|
H A D | multilabel_merge.dts | 43 node6 {
|
/aosp_15_r20/external/selinux/libsepol/include/sepol/policydb/ |
H A D | policydb.h | 358 } node6; /* IPv6 node information */ member
|
/aosp_15_r20/external/tensorflow/tensorflow/core/common_runtime/ |
H A D | direct_session_test.cc | 1721 Node* node6 = test::graph::Add(&g, node5, const1); in TEST() local 1743 s = session->Run({{const2->name(), string_handle}}, {node6->name() + ":0"}, in TEST() 1774 Node* node6 = test::graph::Add(&g, node5, const1); in TEST() local 1796 s = session->Run({{const2->name(), string_handle}}, {node6->name() + ":0"}, in TEST()
|
/aosp_15_r20/external/selinux/libsepol/cil/src/ |
H A D | cil_binary.c | 3593 memcpy(new_ocon->u.node6.addr, &cil_nodecon->addr->ip.v6.s6_addr[0], 16); in cil_nodecon_to_policydb() 3594 memcpy(new_ocon->u.node6.mask, &cil_nodecon->mask->ip.v6.s6_addr[0], 16); in cil_nodecon_to_policydb()
|
/aosp_15_r20/external/libbpf/.github/actions/build-selftests/ |
H A D | vmlinux.h | 35363 } node6; member
|
/aosp_15_r20/external/bcc/libbpf-tools/loongarch/ |
H A D | vmlinux.h | 27058 } node6; member
|
H A D | vmlinux_602.h | 27058 } node6; member
|
/aosp_15_r20/external/bcc/libbpf-tools/x86/ |
H A D | vmlinux.h | 68715 } node6; member
|
H A D | vmlinux_518.h | 68715 } node6; member
|