Searched refs:arg_index (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | ThreadPlanTracer.cpp | 192 for (int arg_index = 0; arg_index < num_args; ++arg_index) { in Log() 200 for (int arg_index = 0; arg_index < num_args; ++arg_index) { in Log() 202 "\n\targ[%d]=%llx", arg_index, in Log() 203 value_list.GetValueAtIndex(arg_index)->GetScalar().ULongLong()); in Log() 205 if (arg_index + 1 < num_args) in Log() 193 for (int arg_index = 0; arg_index < num_args; ++arg_index) { Log() local 201 for (int arg_index = 0; arg_index < num_args; ++arg_index) { Log() local
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectLog.cpp | 35 size_t arg_index = request.GetCursorIndex(); in CompleteEnableDisable() local 36 if (arg_index == 0) { // We got: log enable/disable x[tab] in CompleteEnableDisable() 39 } else if (arg_index >= 1) { // We got: log enable/disable channel x[tab] in CompleteEnableDisable()
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | Options.cpp | 1180 int arg_index; in ParseForCompletion() local 1182 arg_index = -1; in ParseForCompletion() 1184 arg_index = OptionParser::GetOptionIndex() - 2; in ParseForCompletion() 1190 arg_index)); in ParseForCompletion()
|
/freebsd/contrib/llvm-project/lldb/source/Expression/ |
H A D | IRInterpreter.cpp | 715 int arg_index = 0; in Interpret() local 719 ai != ae; ++ai, ++arg_index) { in Interpret() 720 if (args.size() <= static_cast<size_t>(arg_index)) { in Interpret() 725 lldb::addr_t ptr = args[arg_index]; in Interpret()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | PdbAstBuilder.cpp | 1202 for (TypeIndex arg_index : arg_indices) { in CreateFunctionType() 1203 clang::QualType arg_type = GetOrCreateType(arg_index); in CreateFunctionType() 1201 for (TypeIndex arg_index : arg_indices) { CreateFunctionType() local
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_common_interceptors.inc | 10059 unsigned flags, int *arg_index, void *input) { 10061 COMMON_INTERCEPTOR_ENTER(ctx, argp_parse, argp, argc, argv, flags, arg_index, 10065 int res = REAL(argp_parse)(argp, argc, argv, flags, arg_index, input); 10066 if (!res && arg_index) 10067 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, arg_index, sizeof(int));
|