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

1 2 3 4 5 6 7 8 91011>>

  /packages/services/Telephony/common/src/com/android/services/telephony/common/
Call.aidl 19 parcelable Call;
ICallHandlerService.aidl 19 import com.android.services.telephony.common.Call;
28 * TODO: Move this out of opt/telephony and into opt/call or similar. This interface
34 * First call made when we are ready to start sending events to the service.
36 * the call monitor can control the phone calls.
41 * Called when there is an incoming call.
43 void onIncoming(in Call call, in List<String> textReponses);
46 * Called when the state of a call changes.
48 void onUpdate(in List<Call> call);
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
call-stack.rb 3 unless defined? Call
5 Call = Struct.new( :file, :line, :method )
6 class Call
13 return Call.new( file, line )
18 return Call.new( file, line, method )
47 Call.convert_backtrace( caller( depth + 1 ) )
53 Call.convert_backtrace( backtrace )
57 end # unless defined? Call
  /packages/apps/InCallUI/src/com/android/incallui/
CallList.java 27 import com.android.services.telephony.common.Call;
28 import com.android.services.telephony.common.Call.DisconnectCause;
37 * classes of changes to the call list as they are received from the telephony stack.
50 private final HashMap<Integer, Call> mCallMap = Maps.newHashMap();
72 * Called when a single call has changed.
74 public void onUpdate(Call call) {
75 Log.d(this, "onUpdate - ", call);
77 updateCallInMap(call);
82 * Called when a single call disconnects
196 Call call = getFirstCallWithState(Call.State.DIALING); local
224 Call call = getActiveCall(); local
232 Call call = getFirstCallWithState(Call.State.INCOMING); local
    [all...]
AnswerPresenter.java 19 import com.android.services.telephony.common.Call;
24 * Presenter for the Incoming call widget.
31 private int mCallId = Call.INVALID_CALL_ID;
32 private Call mCall = null;
39 final Call call = calls.getIncomingCall(); local
41 if (call != null) {
42 processIncomingCall(call);
55 // This is necessary because the activity can be destroyed while an incoming call exists.
56 // This happens when back button is pressed while incoming call is still being shown
    [all...]
  /external/chromium_org/media/base/
gmock_callback_support_unittest.cc 25 EXPECT_CALL(check, Call(IsNullCallback()));
26 check.Call(TestCallback());
31 EXPECT_CALL(check, Call(IsNotNullCallback()));
32 check.Call(base::Bind(&SetBool));
38 EXPECT_CALL(check, Call(IsNotNullCallback()))
40 check.Call(base::Bind(&SetBool, true, &dst));
47 EXPECT_CALL(check, Call(IsNotNullCallback()))
49 check.Call(base::Bind(&SetBool));
56 EXPECT_CALL(check, Call(0, IsNotNullCallback()))
58 check.Call(0, base::Bind(&SetBool))
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
currentspeakermonitor.h 42 class Call;
47 // Note that the call's audio monitor must be started before this is started.
51 CurrentSpeakerMonitor(Call* call, BaseSession* session);
65 // SSRC. This only fires after the audio monitor on the underlying Call has
70 void OnAudioMonitor(Call* call, const AudioInfo& info);
71 void OnMediaStreamsUpdate(Call* call,
88 Call* call_
    [all...]
mediasessionclient.h 44 #include "talk/session/media/call.h"
50 class Call;
69 // Return mapping of call ids to Calls.
70 const std::map<uint32, Call *>& calls() const { return calls_; }
89 // Control use of multiple sessions in a call.
96 Call *CreateCall();
97 void DestroyCall(Call *call);
99 Call *GetFocus();
100 void SetFocus(Call *call)
    [all...]
  /packages/services/Telephony/src/com/android/phone/
CallModeler.java 34 import com.android.services.telephony.common.Call;
35 import com.android.services.telephony.common.Call.Capabilities;
36 import com.android.services.telephony.common.Call.State;
54 * Creates a Call model from Call state and data received from the telephony
55 * layer. The telephony layer maintains 3 conceptual objects: Phone, Call,
62 * There are 3 Call instances that exist for the lifetime of this class which
66 * A Connection most closely resembles what the layperson would consider a call.
68 * three Call instances. Which of the three Calls owns the Connection changes
71 * This class models a new Call class from Connection objects received fro
182 Call call = onNewRingingConnection(connection); local
271 final Call call = getCallFromMap(mCallMap, c, false); local
294 final Call call = getCallFromMap(mCallMap, conn, true); local
310 final Call call = getCallFromMap(mCallMap, conn, false); local
405 final Call call = getCallFromMap(mCallMap, connection, shouldCreate \/* create *\/); local
431 final Call call = mCallMap.get(orphanedConnection); local
439 final Call call = mCallMap.get(orphanedConnection); local
866 Call call = null; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_repr.py 8 from ..fixer_util import Call, Name, parenthesize
23 return Call(Name(u"repr"), [expr], prefix=node.prefix)
fix_callable.py 11 from lib2to3.fixer_util import Call, Name, String, Attr, touch_import
37 return Call(Name(u'isinstance'), args, prefix=node.prefix)
fix_input.py 6 from ..fixer_util import Call, Name
20 # If we're already wrapped in a eval() call, we're done.
26 return Call(Name(u"eval"), [new], prefix=node.prefix)
fix_zip.py 6 We avoid the transformation if the zip() call is directly contained in
12 from ..fixer_util import Name, Call, in_special_context
33 new = Call(Name(u"list"), [new])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_repr.py 8 from ..fixer_util import Call, Name, parenthesize
23 return Call(Name(u"repr"), [expr], prefix=node.prefix)
fix_callable.py 11 from lib2to3.fixer_util import Call, Name, String, Attr, touch_import
37 return Call(Name(u'isinstance'), args, prefix=node.prefix)
  /external/llvm/lib/Target/Mips/
MipsOptimizeMathLibCalls.cpp 27 cl::desc("MIPS: Disable math lib call "
48 bool optimizeSQRT(CallInst *Call, Function *CalledFunc,
85 CallInst *Call = dyn_cast<CallInst>(&*II);
88 if (!Call || !(CalledFunc = Call->getCalledFunction()))
109 if (optimizeSQRT(Call, CalledFunc, *CurrBB, BB))
124 bool MipsOptimizeMathLibCalls::optimizeSQRT(CallInst *Call,
129 // instruction if the call has already been marked read-only.
130 if (Call->onlyReadsMemory())
141 // v1 = sqrt(src) # library call
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
SimpleStreamChecker.cpp 63 const CallEvent &Call,
70 bool guaranteedNotToCloseFile(const CallEvent &Call) const;
76 void checkPostCall(const CallEvent &Call, CheckerContext &C) const;
78 void checkPreCall(const CallEvent &Call, CheckerContext &C) const;
85 const CallEvent *Call,
121 void SimpleStreamChecker::checkPostCall(const CallEvent &Call,
125 if (!Call.isGlobalCFunction())
128 if (Call.getCalleeIdentifier() != IIfopen)
132 SymbolRef FileDesc = Call.getReturnValue().getAsSymbol();
142 void SimpleStreamChecker::checkPreCall(const CallEvent &Call,
    [all...]
TraversalChecker.cpp 67 void checkPreCall(const CallEvent &Call, CheckerContext &C) const;
68 void checkPostCall(const CallEvent &Call, CheckerContext &C) const;
72 void CallDumper::checkPreCall(const CallEvent &Call, CheckerContext &C) const {
82 Call.dump(llvm::outs());
85 void CallDumper::checkPostCall(const CallEvent &Call, CheckerContext &C) const {
86 const Expr *CallE = Call.getOriginExpr();
99 if (Call.getResultType()->isVoidType())
  /external/chromium/third_party/libjingle/source/talk/session/phone/
call.h 47 class Call : public talk_base::MessageHandler, public sigslot::has_slots<> {
49 Call(MediaSessionClient* session_client);
50 ~Call();
74 // Setting this to false will cause the call to have a longer timeout and
81 // Sets a flag on the chatapp that will redirect the call to voicemail once
82 // the call has been terminated
84 sigslot::signal2<Call *, Session *> SignalAddSession;
85 sigslot::signal2<Call *, Session *> SignalRemoveSession;
86 sigslot::signal3<Call *, BaseSession *, BaseSession::State>
88 sigslot::signal3<Call *, BaseSession *, Session::Error
    [all...]
call.cc 32 #include "talk/session/phone/call.h"
49 Call::Call(MediaSessionClient* session_client)
58 Call::~Call() {
67 Session *Call::InitiateSession(const buzz::Jid &jid,
75 // After this timeout, terminate the call because the callee isn't
85 void Call::IncomingSession(
94 void Call::AcceptSession(BaseSession* session,
105 void Call::RejectSession(BaseSession *session)
    [all...]
  /external/chromium_org/ppapi/examples/file_chooser/
file_chooser.cc 68 body.Call("removeChild", console_);
70 console_ = doc.Call("createElement", "pre");
73 body.Call("appendChild", console_);
78 console_.Call("appendChild", doc.Call("createTextNode", var));
79 console_.Call("appendChild", doc.Call("createTextNode", "\n"));
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 26 import com.android.internal.telephony.Call;
147 assertEquals(Call.State.IDLE, mGSMPhone.getRingingCall().getState());
148 assertEquals(Call.State.IDLE, mGSMPhone.getForegroundCall().getState());
149 assertEquals(Call.State.IDLE, mGSMPhone.getBackgroundCall().getState());
167 assertEquals(Call.State.DIALING, mGSMPhone.getForegroundCall().getState());
178 assertEquals(Call.State.IDLE, mGSMPhone.getRingingCall().getState());
179 assertEquals(Call.State.DIALING,
181 assertEquals(Call.State.IDLE, mGSMPhone.getBackgroundCall().getState());
201 while (mGSMPhone.getForegroundCall().getState() != Call.State.ALERTING);
210 assertEquals(Call.State.IDLE, mGSMPhone.getRingingCall().getState())
    [all...]
  /external/chromium/chrome/browser/automation/
automation_tab_helper_unittest.cc 66 EXPECT_CALL(check, Call());
70 check.Call();
81 EXPECT_CALL(check, Call());
88 check.Call();
110 EXPECT_CALL(check, Call());
116 check.Call();
151 EXPECT_CALL(check, Call());
158 check.Call();
167 EXPECT_CALL(check, Call());
174 check.Call();
    [all...]
  /external/clang/test/CodeGenCXX/
copy-constructor-elim.cpp 33 void Call(S) {};
41 Call(s);
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test.cc 24 t2.Call(foo);
25 t2.Call(bar);

Completed in 540 milliseconds

1 2 3 4 5 6 7 8 91011>>