HomeSort by relevance Sort by last modified time
    Searched refs:CallInfo (Results 1 - 25 of 35) sorted by null

1 2

  /external/nist-sip/java/gov/nist/javax/sip/header/
CallInfoList.java 33 * 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);
CallInfo.java 34 * CallInfo SIPHeader.
41 public final class CallInfo
55 public CallInfo() {
118 CallInfo retval = (CallInfo) super.clone();
NameMap.java 91 putNameMap(CALL_INFO, CallInfo.class.getName()); //7
HeaderFactoryImpl.java 277 * Creates a new CallInfoHeader based on the newly supplied callInfo value.
279 * @param callInfo The new string value of the callInfo.
282 public CallInfoHeader createCallInfoHeader(URI callInfo) {
283 if (callInfo == null)
284 throw new NullPointerException("null arg callInfo");
286 CallInfo c = new CallInfo();
287 c.setInfo(callInfo);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedGsmCallState.java 30 class CallInfo {
51 CallInfo (boolean isMT, State state, boolean isMpty, String number) {
64 static CallInfo
66 return new CallInfo (false, State.DIALING, false, number);
69 static CallInfo
71 return new CallInfo (true, State.INCOMING, false, number);
135 CallInfo mCalls[] = new CallInfo[MAX_CALLS];
185 CallInfo call = mCalls[i];
190 && (call.mState == CallInfo.State.INCOMIN
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
CallInfoParser.java 33 * Parser for CallInfo header.
45 * @param callInfo the header to parse
47 public CallInfoParser(String callInfo) {
48 super(callInfo);
60 * parse the CallInfo String header
73 CallInfo callInfo= new CallInfo();
74 callInfo.setHeaderName(SIPHeaderNames.CALL_INFO);
80 callInfo.setInfo(uri)
    [all...]
  /art/compiler/dex/quick/
mir_to_lir.h 95 struct CallInfo;
103 typedef int (*NextCallInsn)(CompilationUnit*, CallInfo*, int,
401 void GenFilledNewArray(CallInfo* info);
466 void GenInvoke(CallInfo* info);
468 int GenDalvikArgsNoRange(CallInfo* info, int call_state, LIR** pcrLabel,
474 int GenDalvikArgsRange(CallInfo* info, int call_state, LIR** pcrLabel,
480 RegLocation InlineTarget(CallInfo* info);
481 RegLocation InlineTargetWide(CallInfo* info);
483 bool GenInlinedCharAt(CallInfo* info);
484 bool GenInlinedStringIsEmptyOrLength(CallInfo* info, bool is_empty)
    [all...]
gen_invoke.cc 331 static int NextSDCallInsn(CompilationUnit* cu, CallInfo* info,
435 static int NextVCallInsn(CompilationUnit* cu, CallInfo* info,
483 static int NextInterfaceCallInsn(CompilationUnit* cu, CallInfo* info, int state,
551 static int NextInvokeInsnSP(CompilationUnit* cu, CallInfo* info, ThreadOffset trampoline,
572 static int NextStaticCallInsnSP(CompilationUnit* cu, CallInfo* info,
582 static int NextDirectCallInsnSP(CompilationUnit* cu, CallInfo* info, int state,
590 static int NextSuperCallInsnSP(CompilationUnit* cu, CallInfo* info, int state,
598 static int NextVCallInsnSP(CompilationUnit* cu, CallInfo* info, int state,
607 CallInfo* info, int state,
616 int Mir2Lir::LoadArgRegs(CallInfo* info, int call_state
    [all...]
gen_common.cc 229 void Mir2Lir::GenFilledNewArray(CallInfo* info) {
524 CallInfo* info = reinterpret_cast<CallInfo*>(lab->operands[0]);
    [all...]
  /art/compiler/dex/quick/mips/
codegen_mips.h 107 bool GenInlinedCas32(CallInfo* info, bool need_write_barrier);
108 bool GenInlinedMinMaxInt(CallInfo* info, bool is_min);
109 bool GenInlinedSqrt(CallInfo* info);
fp_mips.cc 237 bool MipsMir2Lir::GenInlinedMinMaxInt(CallInfo* info, bool is_min) {
int_mips.cc 261 bool MipsMir2Lir::GenInlinedCas32(CallInfo* info, bool need_write_barrier) {
266 bool MipsMir2Lir::GenInlinedSqrt(CallInfo* info) {
  /external/clang/lib/CodeGen/
CGObjCRuntime.h 274 const CGFunctionInfo &CallInfo;
277 MessageSendInfo(const CGFunctionInfo &callInfo,
279 : CallInfo(callInfo), MessengerType(messengerType) {}
CGCall.cpp     [all...]
  /art/compiler/dex/quick/arm/
codegen_arm.h 106 bool GenInlinedCas32(CallInfo* info, bool need_write_barrier);
107 bool GenInlinedMinMaxInt(CallInfo* info, bool is_min);
108 bool GenInlinedSqrt(CallInfo* info);
fp_arm.cc 305 bool ArmMir2Lir::GenInlinedSqrt(CallInfo* info) {
int_arm.cc 480 bool ArmMir2Lir::GenInlinedMinMaxInt(CallInfo* info, bool is_min) {
505 bool ArmMir2Lir::GenInlinedCas32(CallInfo* info, bool need_write_barrier) {
    [all...]
  /art/compiler/dex/quick/x86/
codegen_x86.h 107 bool GenInlinedCas32(CallInfo* info, bool need_write_barrier);
108 bool GenInlinedMinMaxInt(CallInfo* info, bool is_min);
109 bool GenInlinedSqrt(CallInfo* info);
int_x86.cc 219 bool X86Mir2Lir::GenInlinedMinMaxInt(CallInfo* info, bool is_min) {
247 bool X86Mir2Lir::GenInlinedCas32(CallInfo* info, bool need_write_barrier) {
fp_x86.cc 371 bool X86Mir2Lir::GenInlinedSqrt(CallInfo* info) {
  /external/nist-sip/java/gov/nist/javax/sip/message/
ListMap.java 89 headerListTable.put(CallInfo.class, CallInfoList.class);
  /art/compiler/dex/
mir_graph.h 324 struct CallInfo {
598 CallInfo* NewMemCallInfo(BasicBlock* bb, MIR* mir, InvokeType type, bool is_range);
mir_graph.cc     [all...]
  /art/compiler/dex/portable/
mir_to_gbc.h 31 struct CallInfo;
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp     [all...]

Completed in 534 milliseconds

1 2