Searched defs:arg_type (Results 1 - 20 of 20) sorted by relevance

/external/bluetooth/bluedroid/bta/ag/
H A Dbta_ag_at.c86 UINT8 arg_type; local
107 arg_type = BTA_AG_AT_NONE;
113 arg_type = BTA_AG_AT_READ;
121 arg_type = BTA_AG_AT_TEST;
126 arg_type = BTA_AG_AT_SET;
135 arg_type = BTA_AG_AT_FREE;
139 if ((arg_type & p_cb->p_at_tbl[idx].arg_type) != 0)
142 if (arg_type == BTA_AG_AT_SET &&
155 (*p_cb->p_cmd_cback)(p_cb->p_user, idx, arg_type, p_ar
[all...]
H A Dbta_ag_at.h50 UINT8 arg_type; /* allowable argument type syntax */ member in struct:__anon400
57 typedef void (tBTA_AG_AT_CMD_CBACK)(void *p_user, UINT16 cmd, UINT8 arg_type,
H A Dbta_ag_cmd.c824 void bta_ag_at_hsp_cback(tBTA_AG_SCB *p_scb, UINT16 cmd, UINT8 arg_type, argument
829 APPL_TRACE_DEBUG("AT cmd:%d arg_type:%d arg:%d arg:%s", cmd, arg_type,
855 void bta_ag_at_hfp_cback(tBTA_AG_SCB *p_scb, UINT16 cmd, UINT8 arg_type, argument
867 APPL_TRACE_DEBUG("HFP AT cmd:%d arg_type:%d arg:%d arg:%s", cmd, arg_type,
938 if (arg_type == BTA_AG_AT_TEST)
996 if (arg_type == BTA_AG_AT_TEST)
1093 if (arg_type == BTA_AG_AT_SET)
1117 if (arg_type
[all...]
/external/ltrace/
H A Dtype.h29 enum arg_type { enum
46 enum arg_type type;
72 struct arg_type_info *type_get_simple(enum arg_type type);
138 int type_is_integral(enum arg_type type);
141 int type_is_signed(enum arg_type type);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/llvm/
H A Dinvocation.cpp215 llvm::Type *arg_type = arg.getType(); local
217 unsigned arg_size = TD.getTypeStoreSize(arg_type);
219 if (llvm::isa<llvm::PointerType>(arg_type) && arg.hasByValAttr()) {
220 arg_type =
221 llvm::dyn_cast<llvm::PointerType>(arg_type)->getElementType();
224 if (arg_type->isPointerTy()) {
228 unsigned address_space = llvm::cast<llvm::PointerType>(arg_type)->getAddressSpace();
/external/lldb/source/Commands/
H A DCommandObjectHelp.cpp40 command_arg.arg_type = eArgTypeCommandName;
176 const CommandArgumentType arg_type = CommandObject::LookupArgumentName (command.GetArgumentAtIndex (0)); local
177 if (arg_type != eArgTypeLastArg)
180 CommandObject::GetArgumentHelp (output_strm, arg_type, m_interpreter);
/external/mesa3d/src/gallium/state_trackers/clover/llvm/
H A Dinvocation.cpp215 llvm::Type *arg_type = arg.getType(); local
217 unsigned arg_size = TD.getTypeStoreSize(arg_type);
219 if (llvm::isa<llvm::PointerType>(arg_type) && arg.hasByValAttr()) {
220 arg_type =
221 llvm::dyn_cast<llvm::PointerType>(arg_type)->getElementType();
224 if (arg_type->isPointerTy()) {
228 unsigned address_space = llvm::cast<llvm::PointerType>(arg_type)->getAddressSpace();
/external/bison/lib/
H A Dprintf-args.h88 } arg_type; typedef in typeref:enum:__anon339
93 arg_type type;
/external/bluetooth/bluedroid/bta/hf_client/
H A Dbta_hf_client_at.h31 UINT8 arg_type; /* allowable argument type syntax */ member in struct:__anon597
38 typedef void (tBTA_AG_AT_CMD_CBACK)(void *p_user, UINT16 cmd, UINT8 arg_type,
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_logic.c496 LLVMTypeRef arg_type; local
506 arg_type = LLVMVectorType(LLVMDoubleTypeInContext(lc), 4);
510 arg_type = LLVMVectorType(LLVMFloatTypeInContext(lc), 8);
516 arg_type = LLVMVectorType(LLVMDoubleTypeInContext(lc), 2);
520 arg_type = LLVMVectorType(LLVMFloatTypeInContext(lc), 4);
523 arg_type = LLVMVectorType(LLVMInt8TypeInContext(lc), 16);
526 if (arg_type != bld->int_vec_type) {
527 mask = LLVMBuildBitCast(builder, mask, arg_type, "");
530 if (arg_type != bld->vec_type) {
531 a = LLVMBuildBitCast(builder, a, arg_type, "");
[all...]
/external/e2fsprogs/intl/
H A Dprintf-args.h75 } arg_type; typedef in typeref:enum:__anon19651
80 arg_type type;
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_logic.c496 LLVMTypeRef arg_type; local
506 arg_type = LLVMVectorType(LLVMDoubleTypeInContext(lc), 4);
510 arg_type = LLVMVectorType(LLVMFloatTypeInContext(lc), 8);
516 arg_type = LLVMVectorType(LLVMDoubleTypeInContext(lc), 2);
520 arg_type = LLVMVectorType(LLVMFloatTypeInContext(lc), 4);
523 arg_type = LLVMVectorType(LLVMInt8TypeInContext(lc), 16);
526 if (arg_type != bld->int_vec_type) {
527 mask = LLVMBuildBitCast(builder, mask, arg_type, "");
530 if (arg_type != bld->vec_type) {
531 a = LLVMBuildBitCast(builder, a, arg_type, "");
[all...]
/external/lldb/source/API/
H A DSBCommandInterpreter.cpp351 SBCommandInterpreter::GetArgumentTypeAsCString (const lldb::CommandArgumentType arg_type) argument
353 return CommandObject::GetArgumentTypeAsCString (arg_type);
357 SBCommandInterpreter::GetArgumentDescriptionAsCString (const lldb::CommandArgumentType arg_type) argument
359 return CommandObject::GetArgumentDescriptionAsCString (arg_type);
/external/lldb/include/lldb/Interpreter/
H A DCommandObject.h54 lldb::CommandArgumentType arg_type; member in struct:lldb_private::CommandObject::ArgumentTableEntry
63 lldb::CommandArgumentType arg_type; member in struct:lldb_private::CommandObject::CommandArgumentData
67 arg_type(lldb::eArgTypeNone),
90 GetArgumentTypeAsCString (const lldb::CommandArgumentType arg_type);
93 GetArgumentDescriptionAsCString (const lldb::CommandArgumentType arg_type);
196 FindArgumentDataByType (lldb::CommandArgumentType arg_type);
205 GetArgumentHelp (Stream &str, lldb::CommandArgumentType arg_type, CommandInterpreter &interpreter);
208 GetArgumentName (lldb::CommandArgumentType arg_type);
/external/lldb/source/Interpreter/
H A DOptions.cpp664 CommandArgumentType arg_type = opt_defs[i].argument_type; local
667 arg_name_str.Printf ("<%s>", CommandObject::GetArgumentName (arg_type));
H A DCommandObject.cpp494 CommandObject::FindArgumentDataByType (CommandArgumentType arg_type) argument
499 if (table[i].arg_type == arg_type)
506 CommandObject::GetArgumentHelp (Stream &str, CommandArgumentType arg_type, CommandInterpreter &interpreter) argument
509 ArgumentTableEntry *entry = (ArgumentTableEntry *) &(table[arg_type]);
511 // The table is *supposed* to be kept in arg_type order, but someone *could* have messed it up...
513 if (entry->arg_type != arg_type)
514 entry = CommandObject::FindArgumentDataByType (arg_type);
541 CommandObject::GetArgumentName (CommandArgumentType arg_type) argument
554 str << "Arg name for type (" << arg_type << ") not in arg table!"; local
996 GetArgumentTypeAsCString(const lldb::CommandArgumentType arg_type) argument
1005 GetArgumentDescriptionAsCString(const lldb::CommandArgumentType arg_type) argument
[all...]
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeVendor.cpp393 clang::QualType arg_type = BuildType(ast_ctx, m_type_vector[ai].c_str()); local
395 if (arg_type.isNull())
403 arg_type,
/external/lldb/tools/driver/
H A DDriver.cpp271 CommandArgumentType arg_type = option_table[i].argument_type; local
272 const char *arg_name = SBCommandInterpreter::GetArgumentTypeAsCString (arg_type);
323 CommandArgumentType arg_type = option_table[i].argument_type; local
324 const char *arg_name = SBCommandInterpreter::GetArgumentTypeAsCString (arg_type);
328 if (arg_type != eArgTypeNone)
332 if (arg_type != eArgTypeNone)
/external/chromium_org/base/debug/
H A Dtrace_event_impl.cc374 unsigned char arg_type; local
376 ::trace_event_internal::SetTraceValue(value, &arg_type, &arg_value);
381 num_args, &arg_name, &arg_type, &arg_value, NULL,
/external/e2fsprogs/misc/
H A De4defrag.c1725 int arg_type = -1; local
1809 arg_type = DEVNAME;
1819 arg_type = DIRNAME;
1823 arg_type = FILENAME;
1837 if (arg_type == FILENAME || arg_type == DIRNAME) {
1866 switch (arg_type) {
1901 if (arg_type == DEVNAME) {
2024 if (arg_type == DEVNAME)
2027 else if (arg_type
[all...]

Completed in 807 milliseconds