Searched refs:CallInfo (Results 1 - 23 of 23) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/header/
H A DCallInfoList.java33 * A list of CallInfo headers (there can be multiple in a message).
40 public class CallInfoList extends SIPHeaderList<CallInfo> {
57 super(CallInfo.class, CallInfoHeader.NAME);
H A DCallInfo.java34 * CallInfo SIPHeader.
41 public final class CallInfo class in inherits:ParametersHeader,javax.sip.header.CallInfoHeader
55 public CallInfo() { method in class:CallInfo
118 CallInfo retval = (CallInfo) super.clone();
H A DNameMap.java91 putNameMap(CALL_INFO, CallInfo.class.getName()); //7
H A DHeaderFactoryImpl.java286 CallInfo c = new CallInfo();
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DCallInfoParser.java33 * Parser for CallInfo header.
60 * parse the CallInfo String header
73 CallInfo callInfo= new CallInfo();
91 callInfo= new CallInfo();
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlstate.h69 typedef struct CallInfo { struct
72 struct CallInfo *previous, *next; /* dynamic call link */
89 } CallInfo; typedef in typeref:struct:CallInfo
93 ** Bits in CallInfo status
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);
H A Dldebug.c36 static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name);
39 static int currentpc (CallInfo *ci) {
45 static int currentline (CallInfo *ci) {
85 CallInfo *ci;
107 static const char *findvararg (CallInfo *ci, int n, StkId *pos) {
118 static const char *findlocal (lua_State *L, CallInfo *ci, int n,
216 Closure *f, CallInfo *ci) {
269 CallInfo *ci;
432 static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name) {
478 static int isinstack (CallInfo *c
[all...]
H A Dlstate.c112 CallInfo *luaE_extendCI (lua_State *L) {
113 CallInfo *ci = luaM_new(L, CallInfo);
123 CallInfo *ci = L->ci;
124 CallInfo *next = ci->next;
134 int i; CallInfo *ci;
H A Dldo.c143 CallInfo *ci;
195 CallInfo *ci;
220 CallInfo *ci = L->ci;
244 static void callhook (lua_State *L, CallInfo *ci) {
297 CallInfo *ci;
358 CallInfo *ci = L->ci;
402 CallInfo *ci = L->ci;
444 static CallInfo *findpcall (lua_State *L) {
445 CallInfo *ci;
456 CallInfo *c
[all...]
H A Dlvm.c61 CallInfo *ci = L->ci;
424 CallInfo *ci = L->ci;
535 CallInfo *ci = L->ci;
731 CallInfo *nci = L->ci; /* called frame */
732 CallInfo *oci = nci->previous; /* caller frame */
H A Dlua.h414 struct CallInfo *i_ci; /* active function */
H A Dlapi.c56 CallInfo *ci = L->ci;
94 CallInfo *ci = L->ci;
952 CallInfo *ci = L->ci;
/external/clang/lib/CodeGen/
H A DCGObjCRuntime.h275 const CGFunctionInfo &CallInfo; member in struct:clang::CodeGen::CGObjCRuntime::MessageSendInfo
280 : CallInfo(callInfo), MessengerType(messengerType) {}
H A DCGCall.cpp2596 RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo, argument
2607 QualType RetTy = CallInfo.getReturnType();
2608 const ABIArgInfo &RetAI = CallInfo.getReturnInfo();
2619 if (llvm::StructType *ArgStruct = CallInfo.getArgStruct()) {
2656 assert(CallInfo.arg_size() == CallArgs.size() &&
2658 CGFunctionInfo::const_arg_iterator info_it = CallInfo.arg_begin();
2808 if (STy && !isAAPCSVFP(CallInfo, getTarget())) {
2862 if (CallInfo.isVariadic()) {
2870 Callee, getTypes().GetFunctionType(CallInfo)->getPointerTo(CalleeAS));
2877 llvm::StructType *FullTy = CallInfo
[all...]
H A DCGObjCGNU.cpp803 if (CGM.ReturnTypeUsesSRet(MSI.CallInfo))
818 if (CGM.ReturnTypeUsesSRet(MSI.CallInfo))
1307 RValue msgRet = CGF.EmitCall(MSI.CallInfo, imp, Return, ActualArgs, nullptr,
1404 } else if (CGM.ReturnTypeUsesSRet(MSI.CallInfo)) {
1421 RValue msgRet = CGF.EmitCall(MSI.CallInfo, imp, Return, ActualArgs, nullptr,
H A DCGObjCMac.cpp1883 if (CGM.ReturnSlotInterferesWithArgs(MSI.CallInfo)) {
1896 if (!IsSuper && CGM.ReturnTypeUsesSRet(MSI.CallInfo))
1914 RValue rvalue = CGF.EmitCall(MSI.CallInfo, Fn, Return, ActualArgs);
6534 if (CGM.ReturnSlotInterferesWithArgs(MSI.CallInfo)) {
6602 RValue result = CGF.EmitCall(MSI.CallInfo, callee, returnSlot, args);
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DListMap.java89 headerListTable.put(CallInfo.class, CallInfoList.class);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp2066 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2068 if (!CallInfo.second.getNode())
2072 return CallInfo.first;
2101 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI);
2103 return CallInfo.first;
2135 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2137 return CallInfo;
2272 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2275 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
2277 Results.push_back(CallInfo
[all...]
H A DLegalizeTypes.cpp1060 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI); local
1062 return CallInfo;
H A DLegalizeIntegerTypes.cpp2353 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI); local
2355 SplitInteger(CallInfo.first, Lo, Hi);
2356 SDValue Temp2 = DAG.getLoad(PtrVT, dl, CallInfo.second, Temp,
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp2035 std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI); local
2039 return CallInfo.first;
2043 Chain = CallInfo.second;
2091 std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI); local
2094 SDValue Result = CallInfo.first;
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp10594 std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI); local
10595 return CallInfo.first;
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp15146 std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI);
15147 return DAG.getNode(ISD::BITCAST, dl, VT, CallInfo.first);

Completed in 2047 milliseconds