HomeSort by relevance Sort by last modified time
    Searched refs:mCalls (Results 1 - 13 of 13) sorted by null

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedGsmCallState.java 135 CallInfo mCalls[] = new CallInfo[MAX_CALLS];
184 for (int i = 0 ; i < mCalls.length ; i++) {
185 CallInfo call = mCalls[i];
206 mCalls[empty] = CallInfo.createIncomingCall(
210 mCalls[empty].mState = CallInfo.State.WAITING;
221 for (int i = 0 ; i < mCalls.length ; i++) {
222 CallInfo call = mCalls[i];
247 for (int i = 0 ; i < mCalls.length ; i++) {
248 CallInfo call = mCalls[i];
284 for (int i = 0 ; i < mCalls.length ; i++)
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
CallIdMapper.java 77 private final BiMap<String, Call> mCalls = new BiMap<>();
91 mCalls.put(callId, newCall);
99 mCalls.put(id, call);
112 mCalls.removeValue(call);
117 mCalls.remove(callId);
125 return mCalls.getKey(call);
139 return mCalls.getValue(callId);
143 mCalls.clear();
CallsManager.java 106 private final Set<Call> mCalls = Collections.newSetFromMap(
201 if (!mCalls.contains(call)) {
353 return Collections.unmodifiableCollection(mCalls);
369 for (Call call : mCalls) {
378 for (Call call : mCalls) {
534 if (mCalls.contains(call)) {
558 } else if (!mCalls.contains(call)) {
559 // We check if mCalls already contains the call because we could potentially be reusing
631 if (!mCalls.contains(call)) {
680 if (!mCalls.contains(call))
    [all...]
BluetoothPhoneService.java 569 Collection<Call> mCalls = getCallsManager().getCalls();
570 for (Call call : mCalls) {
    [all...]
  /frameworks/base/telecomm/java/android/telecom/
Phone.java 94 private final List<Call> mCalls = new CopyOnWriteArrayList<>();
97 private final List<Call> mUnmodifiableCalls = Collections.unmodifiableList(mCalls);
116 mCalls.add(call);
125 mCalls.remove(call);
177 for (Call call : mCalls) {
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
DeviceSensorsTest.java 356 private String mCalls = "";
383 assertEquals(mCalls, names);
389 mCalls = mCalls.concat("gotLight");
397 mCalls = mCalls.concat("gotOrientation");
405 mCalls = mCalls.concat("gotAcceleration");
413 mCalls = mCalls.concat("gotAccelerationIncludingGravity")
    [all...]
BatteryStatusManagerTest.java 128 private String mCalls = "";
147 assertEquals(mCalls, names);
162 mCalls = mCalls.concat("gotBatteryStatus");
  /packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
TestConnectionService.java 230 private final List<TestConnection> mCalls = new ArrayList<>();
380 mCalls.remove(connection);
386 if (mCalls.isEmpty() && mMediaPlayer != null && mMediaPlayer.isPlaying()) {
396 mCalls.add(connection);
402 freeConnections.addAll(mCalls);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
DurationMinimap.java 62 private List<GLCall> mCalls;
165 mCalls = trace.getGLCalls();
168 mCalls = null;
305 if (mCalls == null || mCalls.size() < mEndCallIndex) {
314 GLCall c = mCalls.get(i);
  /cts/tests/tests/telephony/src/android/telephony/cts/
SmsManagerTest.java 349 private int mCalls;
362 mCalls = 0;
389 mCalls += 1;
400 while (mCalls < mExpectedCalls) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
HeadsetClientStateMachine.java 114 private Hashtable<Integer, BluetoothHeadsetClientCall> mCalls;
180 ProfileService.println(sb, "mCalls:");
181 for (BluetoothHeadsetClientCall call : mCalls.values()) {
214 while (mCalls.containsKey(id)) {
220 mCalls.put(id, c);
230 it = mCalls.entrySet().iterator();
247 for (BluetoothHeadsetClientCall c : mCalls.values()) {
256 for (BluetoothHeadsetClientCall c : mCalls.values()) {
269 for (BluetoothHeadsetClientCall c : mCalls.values()) {
281 for (BluetoothHeadsetClientCall c : mCalls.values())
    [all...]
  /packages/apps/Settings/src/com/android/settings/notification/
ZenModeSettings.java 131 private SwitchPreference mCalls;
170 mCalls = (SwitchPreference) important.findPreference(KEY_CALLS);
171 mCalls.setOnPreferenceChangeListener(new OnPreferenceChangeListener() {
402 if (mCalls != null) {
403 mCalls.setChecked(mConfig.allowCalls);
  /packages/apps/Settings/src/com/android/settings/sim/
SimSettings.java 105 private SubscriptionInfo mCalls = null;

Completed in 568 milliseconds