Home
last modified time | relevance | path

Searched refs:mAssociatedCallCount (Results 1 – 1 of 1) sorted by relevance

/aosp12/packages/services/Telecomm/src/com/android/server/telecom/
H A DServiceBinder.java259 private int mAssociatedCallCount = 0; field in ServiceBinder
302 mAssociatedCallCount++; in incrementAssociatedCallCount()
303 Log.v(this, "Call count increment %d, %s", mAssociatedCallCount, in incrementAssociatedCallCount()
312 if (mAssociatedCallCount > 0) { in decrementAssociatedCallCount()
313 mAssociatedCallCount--; in decrementAssociatedCallCount()
314 Log.v(this, "Call count decrement %d, %s", mAssociatedCallCount, in decrementAssociatedCallCount()
317 if (!isSuppressingUnbind && mAssociatedCallCount == 0) { in decrementAssociatedCallCount()
327 return mAssociatedCallCount; in getAssociatedCallCount()