| /freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | CommandObject.cpp | 323 FindArgumentDataByType(entry[0].arg_type); in HandleArgumentCompletion() 389 CommandArgumentType arg_type, ArgumentRepetitionType repetition_type) { in AddSimpleArgumentList() argument 395 simple_arg.arg_type = arg_type; in AddSimpleArgumentList() 417 CommandObject::FindArgumentDataByType(CommandArgumentType arg_type) { in FindArgumentDataByType() argument 419 if (g_argument_table[i].arg_type == arg_type) in FindArgumentDataByType() 425 void CommandObject::GetArgumentHelp(Stream &str, CommandArgumentType arg_type, in GetArgumentHelp() argument 427 const ArgumentTableEntry *entry = &(g_argument_table[arg_type]); in GetArgumentHelp() 432 if (entry->arg_type != arg_type) in GetArgumentHelp() 433 entry = CommandObject::FindArgumentDataByType(arg_type); in GetArgumentHelp() 455 OptionEnumValues enum_values = g_argument_table[arg_type].enum_values; in GetArgumentHelp() [all …]
|
| /freebsd/sys/dev/bhnd/nvram/ |
| H A D | bhnd_nvram_value_prf.c | 520 bhnd_nvram_type arg_type; in bhnd_nvram_val_vprintf() local 586 arg_type = (is_signed) ? BHND_NVRAM_TYPE_INT ## _width : \ in bhnd_nvram_val_vprintf() 590 &v.u ## _width, &arg_size, arg_type); \ in bhnd_nvram_val_vprintf() 593 bhnd_nvram_type_name(arg_type), error); \ in bhnd_nvram_val_vprintf() 772 arg_type = BHND_NVRAM_TYPE_STRING; in bhnd_nvram_val_vprintf() 774 elen, NULL, &arg_size, arg_type); in bhnd_nvram_val_vprintf() 778 bhnd_nvram_type_name(arg_type), in bhnd_nvram_val_vprintf() 804 elen, s, &slen, arg_type); in bhnd_nvram_val_vprintf() 808 bhnd_nvram_type_name(arg_type), in bhnd_nvram_val_vprintf() 829 arg_type = BHND_NVRAM_TYPE_CHAR; in bhnd_nvram_val_vprintf() [all …]
|
| /freebsd/sbin/nvmecontrol/ |
| H A D | comnd.h | 38 typedef enum arg_type { enum 47 } arg_type; typedef 57 arg_type at; 65 arg_type at;
|
| H A D | comnd.c | 105 arg_suffix(char *buf, size_t len, arg_type at) in arg_suffix()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | CommandObject.h | 85 lldb::CommandArgumentType arg_type; member 95 lldb::CommandArgumentType arg_type; member 104 : arg_type(type), arg_repetition(repetition), in arg_type() function 120 GetArgumentTypeAsCString(const lldb::CommandArgumentType arg_type); 123 GetArgumentDescriptionAsCString(const lldb::CommandArgumentType arg_type); 209 FindArgumentDataByType(lldb::CommandArgumentType arg_type); 214 lldb::CommandArgumentType arg_type, 229 static void GetArgumentHelp(Stream &str, lldb::CommandArgumentType arg_type, 232 static const char *GetArgumentName(lldb::CommandArgumentType arg_type);
|
| /freebsd/contrib/llvm-project/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() 456 var_name_arg.arg_type = eArgTypeSettingVariableName; in CommandObjectSettingsList() 460 prefix_name_arg.arg_type = eArgTypeSettingPrefix; in CommandObjectSettingsList() 525 var_name_arg.arg_type = eArgTypeSettingVariableName; in CommandObjectSettingsRemove() 533 index_arg.arg_type = eArgTypeSettingIndex; in CommandObjectSettingsRemove() 537 key_arg.arg_type = eArgTypeSettingKey; in CommandObjectSettingsRemove() 618 var_name_arg.arg_type = eArgTypeSettingVariableName; in CommandObjectSettingsReplace() 626 index_arg.arg_type = eArgTypeSettingIndex; in CommandObjectSettingsReplace() 630 key_arg.arg_type = eArgTypeSettingKey; in CommandObjectSettingsReplace() [all …]
|
| H A D | CommandObjectHelp.cpp | 174 const CommandArgumentType arg_type = in DoExecute() local 176 if (arg_type != eArgTypeLastArg) { in DoExecute() 178 CommandObject::GetArgumentHelp(output_strm, arg_type, m_interpreter); in DoExecute()
|
| H A D | CommandObjectLog.cpp | 61 channel_arg.arg_type = eArgTypeLogChannel; in CommandObjectLogEnable() 68 category_arg.arg_type = eArgTypeLogCategory; in CommandObjectLogEnable() 231 channel_arg.arg_type = eArgTypeLogChannel; in CommandObjectLogDisable() 238 category_arg.arg_type = eArgTypeLogCategory; in CommandObjectLogDisable()
|
| H A D | CommandOptionArgumentTable.cpp | 305 g_argument_table[I].arg_type == I,
|
| H A D | CommandObjectMemory.cpp | 301 start_addr_arg.arg_type = eArgTypeAddressOrExpression; in CommandObjectMemoryRead() 309 end_addr_arg.arg_type = eArgTypeAddressOrExpression; in CommandObjectMemoryRead() 1009 addr_arg.arg_type = eArgTypeAddressOrExpression; in CommandObjectMemoryFind() 1017 value_arg.arg_type = eArgTypeAddressOrExpression; in CommandObjectMemoryFind() 1227 addr_arg.arg_type = eArgTypeAddress; 1235 value_arg.arg_type = eArgTypeValue; 1547 addr_arg.arg_type = eArgTypeAddress; in CommandObjectMemoryHistory()
|
| H A D | CommandObjectRegister.cpp | 303 register_arg.arg_type = eArgTypeRegisterName; in CommandObjectRegisterWrite() 311 value_arg.arg_type = eArgTypeValue; in CommandObjectRegisterWrite()
|
| H A D | CommandObjectCommands.cpp | 342 alias_arg.arg_type = eArgTypeAliasName; in CommandObjectCommandsAlias() 350 cmd_arg.arg_type = eArgTypeCommandName; in CommandObjectCommandsAlias() 358 options_arg.arg_type = eArgTypeAliasOptions; in CommandObjectCommandsAlias() 1912 CommandArgumentType arg_type = eArgTypeNone; in CommandObjectScriptingObjectParsed() local 1945 arg_type = (CommandArgumentType) arg_type_int; in CommandObjectScriptingObjectParsed() 1968 this_entry.emplace_back(arg_type, arg_repetition, in CommandObjectScriptingObjectParsed()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/rtsan/ |
| H A D | rtsan_interceptors_posix.cpp | 162 using arg_type = intptr_t; in INTERCEPTOR() typedef 163 static_assert(sizeof(arg_type) >= sizeof(struct flock *)); in INTERCEPTOR() 164 static_assert(sizeof(arg_type) >= sizeof(int)); in INTERCEPTOR() 181 const arg_type arg = va_arg(args, arg_type); in INTERCEPTOR() 196 using arg_type = intptr_t; typedef 197 static_assert(sizeof(arg_type) >= sizeof(struct ifreq *)); 198 static_assert(sizeof(arg_type) >= sizeof(int)); 202 arg_type arg = va_arg(args, arg_type); 1513 using arg_type = unsigned long; typedef 1514 arg_type arg1 = va_arg(args, arg_type); [all …]
|
| /freebsd/contrib/elftoolchain/libelftc/ |
| H A D | libelftc_dem_arm.c | 535 char *arg_type, *rtn_type; in read_func_ptr() local 546 arg_type = NULL; in read_func_ptr() 603 arg_type = vector_str_get_flat(&fptr.vec, &arg_len); in read_func_ptr() 610 free(arg_type); in read_func_ptr() 619 free(arg_type); in read_func_ptr() 633 free(arg_type); in read_func_ptr() 641 free(arg_type); in read_func_ptr() 646 if (vector_str_push(&d->vec, arg_type, arg_len) == false) { in read_func_ptr() 647 free(arg_type); in read_func_ptr() 652 free(arg_type); in read_func_ptr()
|
| H A D | libelftc_dem_gnu2.c | 684 char *arg_type, *rtn_type; in read_func_ptr() local 695 arg_type = NULL; in read_func_ptr() 752 arg_type = vector_str_get_flat(&fptr.vec, &arg_len); in read_func_ptr() 759 free(arg_type); in read_func_ptr() 768 free(arg_type); in read_func_ptr() 782 free(arg_type); in read_func_ptr() 790 free(arg_type); in read_func_ptr() 795 if (vector_str_push(&d->vec, arg_type, arg_len) == false) { in read_func_ptr() 796 free(arg_type); in read_func_ptr() 801 free(arg_type); in read_func_ptr()
|
| /freebsd/contrib/netbsd-tests/lib/libcurses/director/ |
| H A D | testlang_parse.y | 102 args_state_t arg_type; member 579 assign_arg(args_state_t arg_type, void *arg) in assign_arg() argument 587 command.function, str, args_enum_names[arg_type]); in assign_arg() 590 cur.arg_type = arg_type; in assign_arg() 591 switch (arg_type) { in assign_arg() 597 cur.arg_type = ret_string; in assign_arg() 1034 if (command.args[i].arg_type == arg_var) in write_func_and_args() 1035 write_cmd_pipe_args(command.args[i].arg_type, in write_func_and_args() 1038 write_cmd_pipe_args(command.args[i].arg_type, in write_func_and_args() 1065 if (command.args[i].arg_type != arg_var) in init_parse_variables() [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBCommandInterpreter.cpp | 533 const lldb::CommandArgumentType arg_type) { in GetArgumentTypeAsCString() argument 534 LLDB_INSTRUMENT_VA(arg_type); in GetArgumentTypeAsCString() 536 return ConstString(CommandObject::GetArgumentTypeAsCString(arg_type)) in GetArgumentTypeAsCString() 541 const lldb::CommandArgumentType arg_type) { in GetArgumentDescriptionAsCString() argument 542 LLDB_INSTRUMENT_VA(arg_type); in GetArgumentDescriptionAsCString() 544 return ConstString(CommandObject::GetArgumentDescriptionAsCString(arg_type)) in GetArgumentDescriptionAsCString()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBCommandInterpreter.h | 43 GetArgumentTypeAsCString(const lldb::CommandArgumentType arg_type); 46 GetArgumentDescriptionAsCString(const lldb::CommandArgumentType arg_type);
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCDeclVendor.cpp | 365 clang::QualType arg_type = in BuildMethod() local 369 if (arg_type.isNull()) in BuildMethod() 375 nullptr, arg_type, nullptr, clang::SC_None, nullptr)); in BuildMethod()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | LibCxxVector.cpp | 294 CompilerType arg_type = type.GetTypeTemplateArgument(0); in LibcxxStdVectorSyntheticFrontEndCreator() local 295 if (arg_type.GetTypeName() == "bool") in LibcxxStdVectorSyntheticFrontEndCreator()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/ |
| H A D | SymbolFileCTF.cpp | 480 if (Type *arg_type = ResolveTypeUID(arg)) in CreateFunction() local 481 arg_types.push_back(arg_type->GetFullCompilerType()); in CreateFunction() 803 Type *arg_type = ResolveTypeUID(arg_uid); in ParseFunctions() local 804 arg_types.push_back(arg_type ? arg_type->GetFullCompilerType() in ParseFunctions()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | PDBASTParser.cpp | 627 lldb_private::Type *arg_type = in CreateLLDBTypeFromPDBType() local 631 if (!arg_type) in CreateLLDBTypeFromPDBType() 633 CompilerType arg_ast_type = arg_type->GetFullCompilerType(); in CreateLLDBTypeFromPDBType() 965 Type *arg_type = symbol_file->ResolveTypeUID(arg->getTypeId()); in GetDeclForSymbol() local 966 if (!arg_type) in GetDeclForSymbol() 971 arg_type->GetForwardCompilerType(), clang::SC_None, true); in GetDeclForSymbol()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | CommandLine.h | 511 using arg_type = std::tuple_element_t<0, std::tuple<Args...>>; 515 static_assert(std::is_lvalue_reference_v<arg_type> && 516 std::is_const_v<std::remove_reference_t<arg_type>>, 523 typename detail::callback_traits<F>::arg_type> 526 using arg_type = typename detail::callback_traits<F>::arg_type; 527 return cb<result_type, arg_type>(CB);
|
| /freebsd/usr.sbin/mfiutil/ |
| H A D | mfi_evt.c | 370 switch (detail->arg_type) { in mfi_decode_evt() 525 printf("Type %d: ", detail->arg_type); in mfi_decode_evt()
|
| /freebsd/contrib/googletest/googlemock/include/gmock/ |
| H A D | gmock-matchers.h | 5720 template <typename arg_type> \ 5721 class gmock_Impl : public ::testing::MatcherInterface<const arg_type&> { \ 5725 const arg_type& arg, \ 5752 template <typename arg_type> \ 5753 bool name##Matcher::gmock_Impl<arg_type>::MatchAndExplain( \ 5754 const arg_type& arg, \ 5798 template <typename arg_type> \ 5799 class gmock_Impl : public ::testing::MatcherInterface<const arg_type&> { \ 5804 const arg_type& arg, \ 5836 template <typename arg_type> \ [all …]
|