Home
last modified time | relevance | path

Searched refs:CallInfo (Results 1 – 25 of 32) sorted by relevance

12

/external/nist-sip/java/gov/nist/javax/sip/header/
DCallInfo.java41 public final class CallInfo class
55 public CallInfo() { in CallInfo() method in CallInfo
118 CallInfo retval = (CallInfo) super.clone(); in clone()
DCallInfoList.java40 public class CallInfoList extends SIPHeaderList<CallInfo> {
57 super(CallInfo.class, CallInfoHeader.NAME); in CallInfoList()
DNameMap.java91 putNameMap(CALL_INFO, CallInfo.class.getName()); //7 in initializeNameMap()
DHeaderFactoryImpl.java286 CallInfo c = new CallInfo(); in createCallInfoHeader()
/external/syslinux/com32/lua/src/
Dlstate.h69 typedef struct CallInfo { struct
72 struct CallInfo *previous, *next; /* dynamic call link */ argument
89 } CallInfo; argument
159 CallInfo *ci; /* call info for current function */
175 CallInfo base_ci; /* CallInfo for first level (C calling Lua) */
223 LUAI_FUNC CallInfo *luaE_extendCI (lua_State *L);
Dldebug.c36 static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name);
39 static int currentpc (CallInfo *ci) { in currentpc()
45 static int currentline (CallInfo *ci) { in currentline()
85 CallInfo *ci; in lua_getstack()
107 static const char *findvararg (CallInfo *ci, int n, StkId *pos) { in findvararg()
118 static const char *findlocal (lua_State *L, CallInfo *ci, int n, in findlocal()
216 Closure *f, CallInfo *ci) { in auxgetinfo()
269 CallInfo *ci; in lua_getinfo()
445 static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name) { in getfuncname()
491 static int isinstack (CallInfo *ci, const TValue *o) { in isinstack()
[all …]
Dldo.c143 CallInfo *ci; in correctstack()
195 CallInfo *ci; in stackinuse()
220 CallInfo *ci = L->ci; in luaD_hook()
244 static void callhook (lua_State *L, CallInfo *ci) { in callhook()
298 CallInfo *ci; in luaD_precall()
365 CallInfo *ci = L->ci; in luaD_poscall()
409 CallInfo *ci = L->ci; in finishCcall()
451 static CallInfo *findpcall (lua_State *L) { in findpcall()
452 CallInfo *ci; in findpcall()
463 CallInfo *ci = findpcall(L); in recover()
[all …]
Dlstate.c117 CallInfo *luaE_extendCI (lua_State *L) { in luaE_extendCI()
118 CallInfo *ci = luaM_new(L, CallInfo); in luaE_extendCI()
128 CallInfo *ci = L->ci; in luaE_freeCI()
129 CallInfo *next = ci->next; in luaE_freeCI()
139 int i; CallInfo *ci; in stack_init()
Dlvm.c84 CallInfo *ci = L->ci; in traceexec()
447 CallInfo *ci = L->ci; in luaV_finishOp()
558 CallInfo *ci = L->ci; in luaV_execute()
754 CallInfo *nci = L->ci; /* called frame */ in luaV_execute()
755 CallInfo *oci = nci->previous; /* caller frame */ in luaV_execute()
Dlapi.c56 CallInfo *ci = L->ci; in index2addr()
94 CallInfo *ci = L->ci; in lua_checkstack()
952 CallInfo *ci = L->ci; in lua_pcallk()
Dlua.h419 struct CallInfo *i_ci; /* active function */
Dlgc.c508 CallInfo *ci; in traversestack()
513 sizeof(CallInfo) * n; in traversestack()
/external/nist-sip/java/gov/nist/javax/sip/parser/
DCallInfoParser.java73 CallInfo callInfo= new CallInfo(); in parse()
91 callInfo= new CallInfo(); in parse()
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
Dcoalescer-cross.ll10 %struct.CallInfo = type { %struct.TValue*, %struct.TValue*, %struct.TValue*, i32*, i32, i32 }
23 …, %struct.global_State*, %struct.CallInfo*, i32*, %struct.TValue*, %struct.TValue*, %struct.CallIn…
/external/llvm/test/CodeGen/X86/
Dcoalescer-cross.ll10 %struct.CallInfo = type { %struct.TValue*, %struct.TValue*, %struct.TValue*, i32*, i32, i32 }
23 …, %struct.global_State*, %struct.CallInfo*, i32*, %struct.TValue*, %struct.TValue*, %struct.CallIn…
/external/llvm/test/CodeGen/PowerPC/
Dbdzlr.ll9 ….685*, %struct.CallInfo.11.686*, i32*, %struct.lua_TValue.17.692*, %struct.lua_TValue.17.692*, %st…
21 %struct.CallInfo.11.686 = type { %struct.lua_TValue.17.692*, %struct.lua_TValue.17.692*, %struct.lu…
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
Dapply.pass.cpp102 struct CallInfo { struct
108 CallInfo(CallQuals q, Args&&... xargs) in CallInfo() function
114 inline CallInfo<decltype(std::forward_as_tuple(std::declval<Args>()...))>
/external/clang/lib/CodeGen/
DCGObjCRuntime.h287 const CGFunctionInfo &CallInfo; member
292 : CallInfo(callInfo), MessengerType(messengerType) {} in MessageSendInfo()
DCGCall.cpp3507 RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo, in EmitCall() argument
3517 QualType RetTy = CallInfo.getReturnType(); in EmitCall()
3518 const ABIArgInfo &RetAI = CallInfo.getReturnInfo(); in EmitCall()
3528 if (llvm::StructType *ArgStruct = CallInfo.getArgStruct()) { in EmitCall()
3538 auto Align = CallInfo.getArgStructAlignment(); in EmitCall()
3552 ClangToLLVMArgMapping IRFunctionArgs(CGM.getContext(), CallInfo); in EmitCall()
3582 assert(CallInfo.arg_size() == CallArgs.size() && in EmitCall()
3585 CGFunctionInfo::const_arg_iterator info_it = CallInfo.arg_begin(); in EmitCall()
3690 if (CallInfo.getExtParameterInfo(ArgNo).getABI() in EmitCall()
3831 if (CallInfo.isVariadic()) { in EmitCall()
[all …]
DCGObjCGNU.cpp847 if (CGM.ReturnTypeUsesSRet(MSI.CallInfo)) in LookupIMP()
862 if (CGM.ReturnTypeUsesSRet(MSI.CallInfo)) in LookupIMPSuper()
1361 RValue msgRet = CGF.EmitCall(MSI.CallInfo, imp, Return, ActualArgs, in GenerateMessageSendSuper()
1457 } else if (CGM.ReturnTypeUsesSRet(MSI.CallInfo)) { in GenerateMessageSend()
1474 RValue msgRet = CGF.EmitCall(MSI.CallInfo, imp, Return, ActualArgs, in GenerateMessageSend()
/external/nist-sip/java/gov/nist/javax/sip/message/
DListMap.java89 headerListTable.put(CallInfo.class, CallInfoList.class); in initializeListMap()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DLegalizeTypes.cpp1057 std::pair<SDValue,SDValue> CallInfo = in MakeLibCall() local
1062 return CallInfo.first; in MakeLibCall()
1089 std::pair<SDValue, SDValue> CallInfo = in ExpandChainLibCall() local
1095 return CallInfo; in ExpandChainLibCall()
DLegalizeDAG.cpp2218 std::pair<SDValue, SDValue> CallInfo = in ExpandLibCall() local
2224 if (!CallInfo.second.getNode()) in ExpandLibCall()
2231 LegalizeOp(CallInfo.second); in ExpandLibCall()
2232 return CallInfo.first; in ExpandLibCall()
2255 std::pair<SDValue,SDValue> CallInfo = in ExpandLibCall() local
2264 LegalizeOp(CallInfo.second); in ExpandLibCall()
2266 return CallInfo.first; in ExpandLibCall()
2294 std::pair<SDValue, SDValue> CallInfo = in ExpandChainLibCall() local
2303 LegalizeOp(CallInfo.second); in ExpandChainLibCall()
2304 return CallInfo; in ExpandChainLibCall()
[all …]
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeDAG.cpp1978 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI); in ExpandLibCall() local
1980 if (!CallInfo.second.getNode()) in ExpandLibCall()
1984 return CallInfo.first; in ExpandLibCall()
2013 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI); in ExpandLibCall() local
2015 return CallInfo.first; in ExpandLibCall()
2047 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI); in ExpandChainLibCall() local
2049 return CallInfo; in ExpandChainLibCall()
2142 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI); in ExpandDivRemLibCall() local
2145 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr, in ExpandDivRemLibCall()
2147 Results.push_back(CallInfo.first); in ExpandDivRemLibCall()
[all …]
DLegalizeTypes.cpp1108 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI); in ExpandChainLibCall() local
1110 return CallInfo; in ExpandChainLibCall()

12