| /openbsd-src/gnu/llvm/lldb/source/Interpreter/ |
| H A D | CommandObject.cpp | 369 CommandObject::FindArgumentDataByType(CommandArgumentType arg_type) { in FindArgumentDataByType() argument 371 if (g_argument_table[i].arg_type == arg_type) in FindArgumentDataByType() 377 void CommandObject::GetArgumentHelp(Stream &str, CommandArgumentType arg_type, in GetArgumentHelp() argument 379 const ArgumentTableEntry *entry = &(g_argument_table[arg_type]); in GetArgumentHelp() 384 if (entry->arg_type != arg_type) in GetArgumentHelp() 385 entry = CommandObject::FindArgumentDataByType(arg_type); in GetArgumentHelp() 407 OptionEnumValues enum_values = g_argument_table[arg_type].enum_values; in GetArgumentHelp() 426 const char *CommandObject::GetArgumentName(CommandArgumentType arg_type) { in GetArgumentName() argument 427 const ArgumentTableEntry *entry = &(g_argument_table[arg_type]); in GetArgumentName() 432 if (entry->arg_type != arg_type) in GetArgumentName() [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | infcall.c | 88 struct type *arg_type = check_typedef (VALUE_TYPE (arg)); in value_arg_coerce() local 90 = param_type ? check_typedef (param_type) : arg_type; in value_arg_coerce() 95 if (TYPE_CODE (arg_type) != TYPE_CODE_REF in value_arg_coerce() 96 && TYPE_CODE (arg_type) != TYPE_CODE_PTR) in value_arg_coerce() 559 struct type *arg_type = check_typedef (VALUE_TYPE (args[i])); in call_function_by_hand() local 560 if ((TYPE_CODE (arg_type) == TYPE_CODE_STRUCT in call_function_by_hand() 561 || TYPE_CODE (arg_type) == TYPE_CODE_UNION in call_function_by_hand() 562 || TYPE_CODE (arg_type) == TYPE_CODE_ARRAY in call_function_by_hand() 563 || TYPE_CODE (arg_type) == TYPE_CODE_STRING in call_function_by_hand() 564 || TYPE_CODE (arg_type) == TYPE_CODE_BITSTRING in call_function_by_hand() [all …]
|
| H A D | arm-linux-tdep.c | 111 struct type *arg_type; in arm_linux_push_arguments() local 113 arg_type = check_typedef (VALUE_TYPE (args[argnum])); in arm_linux_push_arguments() 114 len = TYPE_LENGTH (arg_type); in arm_linux_push_arguments() 118 if (TYPE_CODE_FLT == TYPE_CODE (arg_type) && DEPRECATED_REGISTER_SIZE == len) in arm_linux_push_arguments() 150 struct type *arg_type, *target_type; in arm_linux_push_arguments() local 152 arg_type = check_typedef (VALUE_TYPE (args[argnum])); in arm_linux_push_arguments() 153 target_type = TYPE_TARGET_TYPE (arg_type); in arm_linux_push_arguments() 154 len = TYPE_LENGTH (arg_type); in arm_linux_push_arguments() 155 typecode = TYPE_CODE (arg_type); in arm_linux_push_arguments()
|
| H A D | alpha-tdep.c | 286 struct type *arg_type = check_typedef (VALUE_TYPE (arg)); in alpha_push_dummy_call() local 289 switch (TYPE_CODE (arg_type)) in alpha_push_dummy_call() 296 if (TYPE_LENGTH (arg_type) == 4) in alpha_push_dummy_call() 300 arg_type = builtin_type_int32; in alpha_push_dummy_call() 301 arg = value_cast (arg_type, arg); in alpha_push_dummy_call() 303 if (TYPE_LENGTH (arg_type) < ALPHA_REGISTER_SIZE) in alpha_push_dummy_call() 305 arg_type = builtin_type_int64; in alpha_push_dummy_call() 306 arg = value_cast (arg_type, arg); in alpha_push_dummy_call() 314 && TYPE_LENGTH (arg_type) == 4) in alpha_push_dummy_call() 316 arg_type = builtin_type_ieee_double_little; in alpha_push_dummy_call() [all …]
|
| H A D | values.c | 886 int fieldno, struct type *arg_type) in value_primitive_field() argument 891 CHECK_TYPEDEF (arg_type); in value_primitive_field() 892 type = TYPE_FIELD_TYPE (arg_type, fieldno); in value_primitive_field() 896 if (TYPE_FIELD_BITSIZE (arg_type, fieldno)) in value_primitive_field() 899 unpack_field_as_long (arg_type, in value_primitive_field() 903 VALUE_BITPOS (v) = TYPE_FIELD_BITPOS (arg_type, fieldno) % 8; in value_primitive_field() 904 VALUE_BITSIZE (v) = TYPE_FIELD_BITSIZE (arg_type, fieldno); in value_primitive_field() 906 + TYPE_FIELD_BITPOS (arg_type, fieldno) / 8; in value_primitive_field() 908 else if (fieldno < TYPE_N_BASECLASSES (arg_type)) in value_primitive_field() 924 TYPE_FIELD_BITPOS (arg_type, fieldno) / 8; in value_primitive_field() [all …]
|
| H A D | reply_mig_hack.awk | 76 arg_type[num_args] = $1; 113 printf (", %s", arg_type[i]);
|
| H A D | mips-tdep.c | 2321 fp_register_arg_p (enum type_code typecode, struct type *arg_type) in fp_register_arg_p() argument 2327 && TYPE_NFIELDS (arg_type) == 1 in fp_register_arg_p() 2328 && TYPE_CODE (TYPE_FIELD_TYPE (arg_type, 0)) == TYPE_CODE_FLT)) in fp_register_arg_p() 2435 struct type *arg_type = check_typedef (VALUE_TYPE (arg)); in mips_eabi_push_dummy_call() local 2436 int len = TYPE_LENGTH (arg_type); in mips_eabi_push_dummy_call() 2437 enum type_code typecode = TYPE_CODE (arg_type); in mips_eabi_push_dummy_call() 2466 && fp_register_arg_p (typecode, arg_type)) in mips_eabi_push_dummy_call() 2484 if (fp_register_arg_p (typecode, arg_type) in mips_eabi_push_dummy_call() 2548 || fp_register_arg_p (typecode, arg_type)) in mips_eabi_push_dummy_call() 2564 && (TYPE_LENGTH (arg_type) in mips_eabi_push_dummy_call() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Commands/ |
| H A D | CommandObjectSettings.cpp | 38 var_name_arg.arg_type = eArgTypeSettingVariableName; in CommandObjectSettingsSet() 46 value_arg.arg_type = eArgTypeValue; in CommandObjectSettingsSet() 254 var_name_arg.arg_type = eArgTypeSettingVariableName; in CommandObjectSettingsShow() 316 var_name_arg.arg_type = eArgTypeSettingVariableName; in CommandObjectSettingsWrite() 495 var_name_arg.arg_type = eArgTypeSettingVariableName; in CommandObjectSettingsList() 499 prefix_name_arg.arg_type = eArgTypeSettingPrefix; in CommandObjectSettingsList() 567 var_name_arg.arg_type = eArgTypeSettingVariableName; in CommandObjectSettingsRemove() 575 index_arg.arg_type = eArgTypeSettingIndex; in CommandObjectSettingsRemove() 579 key_arg.arg_type = eArgTypeSettingKey; in CommandObjectSettingsRemove() 663 var_name_arg.arg_type = eArgTypeSettingVariableName; in CommandObjectSettingsReplace() [all …]
|
| H A D | CommandObjectLog.cpp | 61 channel_arg.arg_type = eArgTypeLogChannel; in CommandObjectLogEnable() 68 category_arg.arg_type = eArgTypeLogCategory; in CommandObjectLogEnable() 220 channel_arg.arg_type = eArgTypeLogChannel; in CommandObjectLogDisable() 227 category_arg.arg_type = eArgTypeLogCategory; in CommandObjectLogDisable() 283 channel_arg.arg_type = eArgTypeLogChannel; in CommandObjectLogList() 331 channel_arg.arg_type = eArgTypeLogChannel; in CommandObjectLogDump() 442 depth_arg.arg_type = eArgTypeCount; in CommandObjectLogTimerEnable() 561 bool_arg.arg_type = eArgTypeBoolean; in CommandObjectLogTimerIncrement()
|
| H A D | CommandObjectHelp.cpp | 56 command_arg.arg_type = eArgTypeCommand; in CommandObjectHelp() 185 const CommandArgumentType arg_type = in DoExecute() local 187 if (arg_type != eArgTypeLastArg) { in DoExecute() 189 CommandObject::GetArgumentHelp(output_strm, arg_type, m_interpreter); in DoExecute()
|
| H A D | CommandObjectCommands.cpp | 48 file_arg.arg_type = eArgTypeFilename; in CommandObjectCommandsSource() 356 alias_arg.arg_type = eArgTypeAliasName; in CommandObjectCommandsAlias() 364 cmd_arg.arg_type = eArgTypeCommandName; in CommandObjectCommandsAlias() 372 options_arg.arg_type = eArgTypeAliasOptions; in CommandObjectCommandsAlias() 632 alias_arg.arg_type = eArgTypeAliasName; in CommandObjectCommandsUnalias() 720 alias_arg.arg_type = eArgTypeCommandName; in CommandObjectCommandsDelete() 1250 cmd_arg.arg_type = eArgTypeFilename; in CommandObjectCommandsScriptImport() 1383 cmd_arg.arg_type = eArgTypeCommand; in CommandObjectCommandsScriptAdd() 1692 cmd_arg.arg_type = eArgTypeCommand; in CommandObjectCommandsScriptDelete() 1841 cmd_arg.arg_type = eArgTypeCommand; in CommandObjectCommandsContainerAdd() [all …]
|
| H A D | CommandObjectRegister.cpp | 52 register_arg.arg_type = eArgTypeRegisterName; in CommandObjectRegisterRead() 311 register_arg.arg_type = eArgTypeRegisterName; in CommandObjectRegisterWrite() 319 value_arg.arg_type = eArgTypeValue; in CommandObjectRegisterWrite()
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/vx-share/ |
| H A D | xdr_rdb.h | 19 enum arg_type { enum 27 typedef enum arg_type arg_type; typedef 32 arg_type type;
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/ |
| H A D | CommandObject.h | 84 lldb::CommandArgumentType arg_type; member 94 lldb::CommandArgumentType arg_type; member 103 : arg_type(type), arg_repetition(repetition), in arg_type() function 119 GetArgumentTypeAsCString(const lldb::CommandArgumentType arg_type); 122 GetArgumentDescriptionAsCString(const lldb::CommandArgumentType arg_type); 208 FindArgumentDataByType(lldb::CommandArgumentType arg_type); 214 static void GetArgumentHelp(Stream &str, lldb::CommandArgumentType arg_type, 217 static const char *GetArgumentName(lldb::CommandArgumentType arg_type);
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | ipa-type-escape.c | 1036 tree arg_type; in check_call() local 1046 for (arg_type = TYPE_ARG_TYPES (TREE_TYPE (callee_t)); in check_call() 1047 arg_type && TREE_VALUE (arg_type) != void_type_node; in check_call() 1048 arg_type = TREE_CHAIN (arg_type)) in check_call() 1053 last_arg_type = TREE_VALUE(arg_type); in check_call() 1070 for (arg_type = DECL_ARGUMENTS (callee_t); in check_call() 1071 arg_type; in check_call() 1072 arg_type = TREE_CHAIN (arg_type)) in check_call() 1077 last_arg_type = TREE_TYPE(arg_type); in check_call() 1091 arg_type = last_arg_type; in check_call() [all …]
|
| /openbsd-src/gnu/usr.bin/texinfo/intl/ |
| H A D | printf-args.h | 75 } arg_type; typedef 80 arg_type type;
|
| /openbsd-src/gnu/llvm/lldb/bindings/interface/ |
| H A D | SBCommandInterpreter.i | 73 GetArgumentTypeAsCString (const lldb::CommandArgumentType arg_type); 76 GetArgumentDescriptionAsCString (const lldb::CommandArgumentType arg_type);
|
| /openbsd-src/gnu/usr.bin/binutils/opcodes/ |
| H A D | openrisc-desc.c | 920 openrisc_cgen_cpu_open (enum cgen_cpu_open_arg arg_type, ...) in openrisc_cgen_cpu_open() argument 937 va_start (ap, arg_type); in openrisc_cgen_cpu_open() 938 while (arg_type != CGEN_CPU_OPEN_END) in openrisc_cgen_cpu_open() 940 switch (arg_type) in openrisc_cgen_cpu_open() 962 arg_type); in openrisc_cgen_cpu_open() 965 arg_type = va_arg (ap, enum cgen_cpu_open_arg); in openrisc_cgen_cpu_open()
|
| H A D | ip2k-desc.c | 1079 ip2k_cgen_cpu_open (enum cgen_cpu_open_arg arg_type, ...) in ip2k_cgen_cpu_open() argument 1096 va_start (ap, arg_type); in ip2k_cgen_cpu_open() 1097 while (arg_type != CGEN_CPU_OPEN_END) in ip2k_cgen_cpu_open() 1099 switch (arg_type) in ip2k_cgen_cpu_open() 1121 arg_type); in ip2k_cgen_cpu_open() 1124 arg_type = va_arg (ap, enum cgen_cpu_open_arg); in ip2k_cgen_cpu_open()
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/ |
| H A D | openrisc-desc.c | 910 openrisc_cgen_cpu_open (enum cgen_cpu_open_arg arg_type, ...) in openrisc_cgen_cpu_open() argument 927 va_start (ap, arg_type); in openrisc_cgen_cpu_open() 928 while (arg_type != CGEN_CPU_OPEN_END) in openrisc_cgen_cpu_open() 930 switch (arg_type) in openrisc_cgen_cpu_open() 952 arg_type); in openrisc_cgen_cpu_open() 955 arg_type = va_arg (ap, enum cgen_cpu_open_arg); in openrisc_cgen_cpu_open()
|
| H A D | ip2k-desc.c | 1069 ip2k_cgen_cpu_open (enum cgen_cpu_open_arg arg_type, ...) in ip2k_cgen_cpu_open() argument 1086 va_start (ap, arg_type); in ip2k_cgen_cpu_open() 1087 while (arg_type != CGEN_CPU_OPEN_END) in ip2k_cgen_cpu_open() 1089 switch (arg_type) in ip2k_cgen_cpu_open() 1111 arg_type); in ip2k_cgen_cpu_open() 1114 arg_type = va_arg (ap, enum cgen_cpu_open_arg); in ip2k_cgen_cpu_open()
|
| H A D | xstormy16-desc.c | 1371 xstormy16_cgen_cpu_open (enum cgen_cpu_open_arg arg_type, ...) in xstormy16_cgen_cpu_open() argument 1388 va_start (ap, arg_type); in xstormy16_cgen_cpu_open() 1389 while (arg_type != CGEN_CPU_OPEN_END) in xstormy16_cgen_cpu_open() 1391 switch (arg_type) in xstormy16_cgen_cpu_open() 1413 arg_type); in xstormy16_cgen_cpu_open() 1416 arg_type = va_arg (ap, enum cgen_cpu_open_arg); in xstormy16_cgen_cpu_open()
|
| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBCommandInterpreter.cpp | 501 const lldb::CommandArgumentType arg_type) { in GetArgumentTypeAsCString() argument 502 LLDB_INSTRUMENT_VA(arg_type); in GetArgumentTypeAsCString() 504 return CommandObject::GetArgumentTypeAsCString(arg_type); in GetArgumentTypeAsCString() 508 const lldb::CommandArgumentType arg_type) { in GetArgumentDescriptionAsCString() argument 509 LLDB_INSTRUMENT_VA(arg_type); in GetArgumentDescriptionAsCString() 511 return CommandObject::GetArgumentDescriptionAsCString(arg_type); in GetArgumentDescriptionAsCString()
|
| /openbsd-src/lib/libcrypto/lhash/ |
| H A D | lhash.h | 167 #define LHM_lh_doall_arg(type, lh, fn, arg_type, arg) \ argument 168 lh_doall_arg(CHECKED_LHASH_OF(type, lh), fn, CHECKED_PTR_OF(arg_type, arg))
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/API/ |
| H A D | SBCommandInterpreter.h | 37 GetArgumentTypeAsCString(const lldb::CommandArgumentType arg_type); 40 GetArgumentDescriptionAsCString(const lldb::CommandArgumentType arg_type);
|