OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pendingOperations
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/telephony/java/com/android/internal/telephony/
CallTracker.java
38
protected int
pendingOperations
;
103
pendingOperations
++;
114
if (DBG_POLL) log("checkNoOperationsPending:
pendingOperations
=" +
115
pendingOperations
);
116
return
pendingOperations
== 0;
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java
413
pendingOperations
++;
417
if (DBG_POLL) log("obtainCompleteMessage:
pendingOperations
=" +
418
pendingOperations
+ ", needsPoll=" + needsPoll);
425
pendingOperations
--;
427
if (DBG_POLL) log("operationComplete:
pendingOperations
=" +
428
pendingOperations
+ ", needsPoll=" + needsPoll);
430
if (
pendingOperations
== 0 && needsPoll) {
433
} else if (
pendingOperations
< 0) {
435
Log.e(LOG_TAG,"CdmaCallTracker.
pendingOperations
< 0");
436
pendingOperations
= 0
[
all
...]
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmCallTracker.java
355
pendingOperations
++;
359
if (DBG_POLL) log("obtainCompleteMessage:
pendingOperations
=" +
360
pendingOperations
+ ", needsPoll=" + needsPoll);
367
pendingOperations
--;
369
if (DBG_POLL) log("operationComplete:
pendingOperations
=" +
370
pendingOperations
+ ", needsPoll=" + needsPoll);
372
if (
pendingOperations
== 0 && needsPoll) {
375
} else if (
pendingOperations
< 0) {
377
Log.e(LOG_TAG,"GsmCallTracker.
pendingOperations
< 0");
378
pendingOperations
= 0
[
all
...]
Completed in 272 milliseconds