Searched refs:pendingOperations (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallTracker.java38 protected int pendingOperations; field in class:CallTracker
103 pendingOperations++;
114 if (DBG_POLL) log("checkNoOperationsPending: pendingOperations=" +
115 pendingOperations);
116 return pendingOperations == 0;
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGsmCallTracker.java345 pendingOperations++;
349 if (DBG_POLL) log("obtainCompleteMessage: pendingOperations=" +
350 pendingOperations + ", needsPoll=" + needsPoll);
357 pendingOperations--;
359 if (DBG_POLL) log("operationComplete: pendingOperations=" +
360 pendingOperations + ", needsPoll=" + needsPoll);
362 if (pendingOperations == 0 && needsPoll) {
365 } else if (pendingOperations < 0) {
367 Log.e(LOG_TAG,"GsmCallTracker.pendingOperations < 0");
368 pendingOperations
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCdmaCallTracker.java390 pendingOperations++;
394 if (DBG_POLL) log("obtainCompleteMessage: pendingOperations=" +
395 pendingOperations + ", needsPoll=" + needsPoll);
402 pendingOperations--;
404 if (DBG_POLL) log("operationComplete: pendingOperations=" +
405 pendingOperations + ", needsPoll=" + needsPoll);
407 if (pendingOperations == 0 && needsPoll) {
410 } else if (pendingOperations < 0) {
412 Log.e(LOG_TAG,"CdmaCallTracker.pendingOperations < 0");
413 pendingOperations
[all...]

Completed in 28 milliseconds