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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Dialer/java/com/android/incallui/call/
DialerCallDelegate.java 17 package com.android.incallui.call;
19 import android.telecom.Call;
21 /** Callback from the call module to the container. */
24 DialerCall getDialerCallFromTelecomCall(Call telecomCall);
ExternalCallList.java 17 package com.android.incallui.call;
22 import android.telecom.Call;
34 * <p>External calls are those with {@code android.telecom.Call.Details#PROPERTY_IS_EXTERNAL_CALL}.
38 private final Set<Call> externalCalls = new ArraySet<>();
41 /** Handles {@link android.telecom.Call.Callback} callbacks. */
42 private final Call.Callback telecomCallCallback =
43 new Call.Callback() {
45 public void onDetailsChanged(Call call, Call.Details details)
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
CallsManagerListenerBase.java 28 public void onCallAdded(Call call) {
32 public void onCallRemoved(Call call) {
36 public void onCallStateChanged(Call call, int oldState, int newState) {
41 Call call,
47 public void onIncomingCallAnswered(Call call) {
    [all...]
ParcelableCallUtils.java 35 public ParcelableCall toParcelableCall(Call call, boolean includeVideoProvider,
38 call, includeVideoProvider, phoneAccountRegistrar, false, false);
43 * Parcels all information for a {@link Call} into a new {@link ParcelableCall} instance.
45 * @param call The {@link Call} to parcel.
47 * {@link Call}, {@code false} otherwise. Since the {@link ParcelableCall#getVideoCall()}
51 * @param supportsExternalCalls Indicates whether the call should be parcelled for an
55 Call call,
    [all...]
InCallWakeLockController.java 23 * Handles acquisition and release of wake locks relating to call state.
40 public void onCallAdded(Call call) {
41 if (call.isExternalCall()) {
48 public void onCallRemoved(Call call) {
49 if (call.isExternalCall()) {
56 public void onCallStateChanged(Call call, int oldState, int newState) {
57 if (call.isExternalCall())
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/callfiltering/
CallFilterResultCallback.java 18 import com.android.server.telecom.Call;
21 void onCallFilteringComplete(Call call, CallFilteringResult result);
  /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
  /cts/tests/tests/telecom/src/android/telecom/cts/
MockInCallService.java 23 import android.telecom.Call;
36 private ArrayList<Call> mCalls = new ArrayList<>();
37 private ArrayList<Call> mConferenceCalls = new ArrayList<>();
39 private Map<Call, MockVideoCallCallback> mVideoCallCallbacks =
40 new ArrayMap<Call, MockVideoCallCallback>();
49 public void onCallAdded(Call call, int numCalls) {};
50 public void onCallRemoved(Call call, int numCalls) {};
51 public void onCallStateChanged(Call call, int state) {}
338 final Call call = getLastCall(); local
345 final Call call = getLastConferenceCall(); local
    [all...]
CallTest.java 19 import static android.telecom.Call.Details.*;
21 import android.telecom.Call;
30 assertTrue(Call.Details.can(CAPABILITY_HOLD, CAPABILITY_HOLD));
31 assertTrue(Call.Details.can(CAPABILITY_MUTE, CAPABILITY_MUTE));
32 assertTrue(Call.Details.can(CAPABILITY_HOLD | CAPABILITY_DISCONNECT_FROM_CONFERENCE,
34 assertTrue(Call.Details.can(CAPABILITY_MERGE_CONFERENCE
37 assertTrue(Call.Details.can(CAPABILITY_CAN_PAUSE_VIDEO, CAPABILITY_CAN_PAUSE_VIDEO));
38 assertTrue(Call.Details.can(CAPABILITY_CAN_PULL_CALL, CAPABILITY_CAN_PULL_CALL));
40 assertFalse(Call.Details.can(CAPABILITY_MUTE, CAPABILITY_HOLD));
41 assertFalse(Call.Details.can(CAPABILITY_MERGE_CONFERENC
    [all...]
WiredHeadsetTest.java 19 import android.telecom.Call;
46 final Call call = mInCallCallbacks.getService().getLastCall(); local
47 assertCallState(call, Call.STATE_RINGING);
51 assertCallState(call, Call.STATE_ACTIVE);
63 final Call call = mInCallCallbacks.getService().getLastCall(); local
64 assertCallState(call, Call.STATE_RINGING)
102 final Call call = mInCallCallbacks.getService().getLastCall(); local
    [all...]
ExtendedInCallServiceTest.java 28 import android.telecom.Call;
76 final Call call = inCallService.getLastCall(); local
78 assertCallState(call, Call.STATE_DIALING);
82 // Explicitly call super implementation to enable detection of CTS coverage
103 final Call call = inCallService.getLastCall(); local
104 assertCallState(call, Call.STATE_DIALING)
163 final Call call = inCallService.getLastCall(); local
196 final Call call = inCallService.getLastCall(); local
223 final Call call = inCallService.getLastCall(); local
242 final Call call = inCallService.getLastCall(); local
264 final Call call = inCallService.getLastCall(); local
286 final Call call = inCallService.getLastCall(); local
419 final Call call = inCallService.getLastCall(); local
442 final Call call = inCallService.getLastCall(); local
464 final Call call = inCallService.getLastCall(); local
486 final Call call = inCallService.getLastCall(); local
503 final Call call = inCallService.getLastCall(); local
559 final Call call = inCallService.getLastCall(); local
604 final Call call = inCallService.getLastCall(); local
642 final Call call = inCallService.getLastCall(); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/compat/
CallSdkCompat.java 19 import android.telecom.Call;
29 public static final int PROPERTY_ENTERPRISE_CALL = Call.Details.PROPERTY_ENTERPRISE_CALL;
34 Call.Details.CAPABILITY_CANNOT_DOWNGRADE_VIDEO_TO_AUDIO;
38 * TODO: This API is hidden in the N release; replace the implementation with a call to the
41 public static void pullExternalCall(Call call) {
45 Class<?> callClass = Call.class;
48 pullExternalCallMethod.invoke(call);
50 // Ignore requests to pull call if there is a problem.
52 // Ignore requests to pull call if there is a problem
    [all...]
  /external/junit-params/src/test/java/junitparams/custom/combined/
CombinedParametersProviderTest.java 28 new Verifier.Call("a", "1"),
29 new Verifier.Call("b", "1"),
30 new Verifier.Call("a", "2"),
31 new Verifier.Call("b", "2")
37 private List<Call> calls = new LinkedList<Call>();
40 calls.add(new Call(firstParam, anotherParam));
43 List<Call> getCalls() {
47 private static class Call {
52 Call(String firstParam, String anotherParam)
74 Call call = (Call) o; local
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVVMIntrRange.cpp 66 // passed-in call instruction.
81 CallInst *Call = dyn_cast<CallInst>(&I);
82 if (!Call)
85 if (Function *Callee = Call->getCalledFunction()) {
89 Changed |= addRangeMetadata(0, MaxBlockSize.x, Call);
92 Changed |= addRangeMetadata(0, MaxBlockSize.y, Call);
95 Changed |= addRangeMetadata(0, MaxBlockSize.z, Call);
100 Changed |= addRangeMetadata(1, MaxBlockSize.x+1, Call);
103 Changed |= addRangeMetadata(1, MaxBlockSize.y+1, Call);
106 Changed |= addRangeMetadata(1, MaxBlockSize.z+1, Call);
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/compat/
CallCompat.java 22 import android.telecom.Call;
24 /** Compatibility utilities for android.telecom.Call */
27 public static boolean canPullExternalCall(@NonNull android.telecom.Call call) {
29 && ((call.getDetails().getCallCapabilities() & Details.CAPABILITY_CAN_PULL_CALL)
33 /** android.telecom.Call.Details */
36 public static final int PROPERTY_IS_EXTERNAL_CALL = Call.Details.PROPERTY_IS_EXTERNAL_CALL;
37 public static final int PROPERTY_ENTERPRISE_CALL = Call.Details.PROPERTY_ENTERPRISE_CALL;
38 public static final int CAPABILITY_CAN_PULL_CALL = Call.Details.CAPABILITY_CAN_PULL_CALL;
40 Call.Details.CAPABILITY_CANNOT_DOWNGRADE_VIDEO_TO_AUDIO
    [all...]
  /external/webrtc/talk/app/webrtc/
mediacontroller.h 38 class Call;
50 virtual webrtc::Call* call_w() = 0;
fakemediacontroller.h 39 webrtc::Call* call)
40 : channel_manager_(channel_manager), call_(call) {
45 webrtc::Call* call_w() override { return call_; }
52 webrtc::Call* call_;
  /external/deqp/executor/
xeCallQueue.hpp 23 * \brief Cross-thread function call dispatcher.
36 class Call;
41 // \todo [2012-07-10 pyry] Optimize memory management in Call
43 // In order to do that, reference counting system for call object management is needed.
45 class Call
50 Call (void);
51 ~Call (void);
72 CallReader (Call* call);
76 const deUint8* getDataBlock (size_t numBytes); //!< \note Valid only during call
    [all...]
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
CallListAdapter.java 22 import android.telecom.Call;
35 public void onCallAdded(Call call) {
40 public void onCallRemoved(Call call) {
97 Call call = mCallList.getCall(position); local
98 Uri handle = call.getDetails().getHandle();
101 long durationMs = System.currentTimeMillis() - call.getDetails().getConnectTimeMillis();
104 state.setText(getStateString(call));
    [all...]
TestCallList.java 20 import android.telecom.Call;
37 public class TestCallList extends Call.Callback {
40 public void onCallAdded(Call call) {}
41 public void onCallRemoved(Call call) {}
42 public void onRttStarted(Call call) {}
43 public void onRttStopped(Call call) {}
    [all...]
  /cts/tests/tests/telecom3/src/android/telecom/cts/
SelfManagedAwareInCallService.java 20 import android.telecom.Call;
36 public static class CallCallback extends Call.Callback {
44 public void onStateChanged(Call call, int state) {
50 public void onDetailsChanged(Call call, Call.Details details) {
55 public void onCallDestroyed(Call call) {
75 private List<Call> mCalls = new ArrayList<Call>()
    [all...]
  /external/llvm/lib/Transforms/Scalar/
PartiallyInlineLibCalls.cpp 28 static bool optimizeSQRT(CallInst *Call, Function *CalledFunc,
31 // instruction if the call has already been marked read-only.
32 if (Call->onlyReadsMemory())
35 // The call must have the expected result type.
36 if (!Call->getType()->isFloatingPointTy())
47 // v1 = sqrt(src) # library call.
51 // Move all instructions following Call to newly created block JoinBB.
53 BasicBlock *JoinBB = llvm::SplitBlock(&CurrBB, Call->getNextNode());
55 PHINode *Phi = Builder.CreatePHI(Call->getType(), 2);
56 Call->replaceAllUsesWith(Phi)
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
function_testlib.h 28 // Adds a function call to the given scope and returns the output for the node.
30 Output Call(Scope* scope, const string& op_name, const string& fn_name,
  /external/webrtc/webrtc/test/
direct_transport.h 26 class Call;
34 explicit DirectTransport(Call* send_call);
35 DirectTransport(const FakeNetworkPipe::Config& config, Call* send_call);
56 Call* const send_call_;
  /packages/apps/Test/connectivity/sl4n/utils/
command_receiver.h 39 void Call(rapidjson::Document& doc);

Completed in 573 milliseconds

1 2 3 4 5 6 7 8 91011>>