Home
last modified time | relevance | path

Searched refs:cur_context (Results 1 – 4 of 4) sorted by relevance

/external/selinux/libselinux/utils/
Dgetdefaultcon.c22 char * usercon = NULL, *cur_context = NULL; in main() local
61 if (getcon(&cur_context) < 0) { in main()
66 cur_context = argv[optind + 1]; in main()
71 ret=get_default_context_with_rolelevel(seuser, role, level,cur_context,&usercon); in main()
73 ret=get_default_context_with_level(seuser, level, cur_context,&usercon); in main()
79 …printf("%s: %s from %s %s %s %s -> %s\n", argv[0], user, cur_context, seuser, role, level, usercon… in main()
Dgetconlist.c22 char **list, *usercon = NULL, *cur_context = NULL; in main() local
50 if (getcon(&cur_context) < 0) { in main()
55 cur_context = argv[optind + 1]; in main()
61 cur_context, &list); in main()
63 ret = get_ordered_context_list(user, cur_context, &list); in main()
/external/llvm/test/CodeGen/X86/
Dunwindraise.ll29 %cur_context = alloca %struct._Unwind_Context, align 8
35 %2 = bitcast %struct._Unwind_Context* %cur_context to i8*
40 …getelementptr inbounds %struct._Unwind_Context, %struct._Unwind_Context* %cur_context, i64 0, i32 5
41 …%ra.i = getelementptr inbounds %struct._Unwind_Context, %struct._Unwind_Context* %cur_context, i64…
46 …%call = call fastcc i32 @uw_frame_state_for(%struct._Unwind_Context* %cur_context, %struct._Unwind…
59 …32 %4(i32 1, i32 1, i64 %5, %struct._Unwind_Exception* %exc, %struct._Unwind_Context* %cur_context)
66 …call fastcc void @uw_update_context_1(%struct._Unwind_Context* %cur_context, %struct._Unwind_Frame…
81 …elementptr inbounds %struct._Unwind_Context, %struct._Unwind_Context* %cur_context, i64 0, i32 0, …
89 …elementptr inbounds %struct._Unwind_Context, %struct._Unwind_Context* %cur_context, i64 0, i32 8, …
132 …%call.i = call fastcc i32 @uw_frame_state_for(%struct._Unwind_Context* %cur_context, %struct._Unwi…
[all …]
/external/v8/src/interpreter/
Dinterpreter-assembler.cc103 Variable cur_context(this, MachineRepresentation::kTaggedPointer); in GetContextAtDepth() local
104 cur_context.Bind(context); in GetContextAtDepth()
111 Variable* context_search_loop_variables[2] = {&cur_depth, &cur_context}; in GetContextAtDepth()
121 cur_context.Bind( in GetContextAtDepth()
122 LoadContextElement(cur_context.value(), Context::PREVIOUS_INDEX)); in GetContextAtDepth()
129 return cur_context.value(); in GetContextAtDepth()
135 Variable cur_context(this, MachineRepresentation::kTaggedPointer); in GotoIfHasContextExtensionUpToDepth() local
136 cur_context.Bind(context); in GotoIfHasContextExtensionUpToDepth()
141 Variable* context_search_loop_variables[2] = {&cur_depth, &cur_context}; in GotoIfHasContextExtensionUpToDepth()
153 LoadContextElement(cur_context.value(), Context::EXTENSION_INDEX); in GotoIfHasContextExtensionUpToDepth()
[all …]