Home
last modified time | relevance | path

Searched refs:attr_strs (Results 1 – 10 of 10) sorted by relevance

/external/selinux/libsepol/cil/src/
Dcil_write_ast.c658 char *attr_strs = NULL; in cil_write_expandtypeattribute() local
661 rc = cil_unfill_expr(expandattr->attr_strs, &attr_strs, 1); in cil_write_expandtypeattribute()
665 fprintf(cil_out, "(%s %s %s)\n", CIL_KEY_EXPANDTYPEATTRIBUTE, attr_strs, in cil_write_expandtypeattribute()
669 free(attr_strs); in cil_write_expandtypeattribute()
Dandroid.c816 cil_list_init(&expandattr->attr_strs, CIL_TYPE); in cil_build_mappings_tree()
817 cil_list_append(expandattr->attr_strs, CIL_STRING, new_key); in cil_build_mappings_tree()
Dcil_copy_ast.c659 if (orig->attr_strs != NULL) { in cil_copy_expandtypeattribute()
660 cil_copy_list(orig->attr_strs, &new->attr_strs); in cil_copy_expandtypeattribute()
Dcil_internal.h545 struct cil_list *attr_strs; member
Dcil_build_ast.c3238 cil_list_init(&expandattr->attr_strs, CIL_TYPE); in cil_gen_expandtypeattribute()
3239 cil_list_append(expandattr->attr_strs, CIL_STRING, parse_current->next->data); in cil_gen_expandtypeattribute()
3241 rc = cil_fill_list(parse_current->next->cl_head, CIL_TYPE, &expandattr->attr_strs); in cil_gen_expandtypeattribute()
3275 cil_list_destroy(&expandattr->attr_strs, CIL_TRUE); in cil_destroy_expandtypeattribute()
Dcil_tree.c715 cil_tree_print_expr(attr->attr_datums, attr->attr_strs); in cil_tree_print_node()
Dcil.c2084 (*expandattr)->attr_strs = NULL; in cil_expandtypeattribute_init()
Dcil_resolve_ast.c472 cil_list_for_each(curr, expandattr->attr_strs) { in cil_resolve_expandtypeattribute()
/external/tensorflow/tensorflow/core/kernels/
Dremote_fused_graph_execute_utils.cc1187 std::vector<std::vector<string>> attr_strs; in FuseRemoteGraphByPlacedArguments() local
1189 attr_strs.emplace_back(str_util::Split(str, ",")); in FuseRemoteGraphByPlacedArguments()
1191 if (attr_strs.empty()) { in FuseRemoteGraphByPlacedArguments()
1194 for (const std::vector<string>& attr : attr_strs) { in FuseRemoteGraphByPlacedArguments()
/external/tensorflow/tensorflow/core/grappler/
Dmutable_graph_view.cc497 std::vector<string> attr_strs; in UpdateNode() local
498 attr_strs.reserve(attrs.size()); in UpdateNode()
502 attr_strs.push_back(attr_str); in UpdateNode()
506 node_name, op, device, absl::StrJoin(attr_strs, ", ")); in UpdateNode()