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 23 private final HashBiMap<String, Call> mCalls = HashBiMap.create();
37 mCalls.put(callId, newCall);
45 mCalls.put(id, call);
58 mCalls.inverse().remove(call);
63 mCalls.remove(callId);
71 return mCalls.inverse().get(call);
85 return mCalls.get(callId);
89 mCalls.clear();
CallsManager.java 103 private final Set<Call> mCalls = Collections.newSetFromMap(
189 if (!mCalls.contains(call)) {
291 return ImmutableList.copyOf(mCalls);
307 for (Call call : mCalls) {
523 if (!mCalls.contains(call)) {
564 if (!mCalls.contains(call)) {
580 if (!mCalls.contains(call)) {
592 if (!mCalls.contains(call)) {
604 if (!mCalls.contains(call)) {
619 if (!mCalls.contains(call))
    [all...]
BluetoothPhoneService.java 562 Collection<Call> mCalls = getCallsManager().getCalls();
563 for (Call call : mCalls) {
    [all...]
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
BatteryStatusManagerTest.java 97 private String mCalls = "";
116 assertEquals(mCalls, names);
131 mCalls = mCalls.concat("gotBatteryStatus");
DeviceSensorsTest.java 322 private String mCalls = "";
345 assertEquals(mCalls, names);
353 mCalls = mCalls.concat("gotOrientation");
361 mCalls = mCalls.concat("gotAcceleration");
369 mCalls = mCalls.concat("gotAccelerationIncludingGravity");
377 mCalls = mCalls.concat("gotRotationRate")
    [all...]
  /frameworks/base/telecomm/java/android/telecom/
Phone.java 84 private final List<Call> mCalls = new CopyOnWriteArrayList<>();
87 private final List<Call> mUnmodifiableCalls = Collections.unmodifiableList(mCalls);
104 mCalls.add(call);
113 mCalls.remove(call);
157 for (Call call : mCalls) {
  /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;
185 while (mCalls.containsKey(id)) {
191 mCalls.put(id, c);
201 it = mCalls.entrySet().iterator();
218 for (BluetoothHeadsetClientCall c : mCalls.values()) {
227 for (BluetoothHeadsetClientCall c : mCalls.values()) {
240 for (BluetoothHeadsetClientCall c : mCalls.values()) {
252 for (BluetoothHeadsetClientCall c : mCalls.values()) {
388 mCalls.remove(c.getId());
611 for (BluetoothHeadsetClientCall cc : mCalls.values())
    [all...]
  /packages/apps/Settings/src/com/android/settings/notification/
ZenModeSettings.java 134 private SwitchPreference mCalls;
174 mCalls = (SwitchPreference) important.findPreference(KEY_CALLS);
176 mCalls.setOnPreferenceChangeListener(new OnPreferenceChangeListener() {
189 important.removePreference(mCalls);
190 mCalls = null;
380 if (mCalls != null) {
381 mCalls.setChecked(mConfig.allowCalls);
  /packages/apps/Settings/src/com/android/settings/sim/
SimSettings.java 88 private SubInfoRecord mCalls = null;
286 mCalls = sir;

Completed in 592 milliseconds