Lines Matching refs:queryId
86 private int queryId; field in ContactInfoCache
402 final CallerInfoQueryToken queryToken = new CallerInfoQueryToken(queryId, callId); in findInfo()
403 queryId++; in findInfo()
417 cacheEntry.queryId = queryToken.queryId; in findInfo()
441 + queryToken.queryId in updateCallerInfoInCacheOnAnyThread()
467 cacheEntry.queryId = queryToken.queryId; in updateCallerInfoInCacheOnAnyThread()
557 final int queryId = myCookie.queryId; in onImageLoaded() local
558 if (!isWaitingForThisQuery(callId, queryId)) { in onImageLoaded()
606 final int queryId = myCookie.queryId; in onImageLoadComplete() local
607 if (!isWaitingForThisQuery(callId, queryId)) { in onImageLoadComplete()
619 queryId = 0; in clearCache()
719 int queryId; field in ContactInfoCache.ContactCacheEntry
764 + queryId in toString()
803 if (!isWaitingForThisQuery(cw.callId, queryToken.queryId)) { in onDataLoaded()
819 if (!isWaitingForThisQuery(cw.callId, queryToken.queryId)) { in onQueryComplete()
837 new PhoneNumberServiceListener(callId, queryToken.queryId); in onQueryComplete()
862 PhoneNumberServiceListener(String callId, int queryId) { in PhoneNumberServiceListener() argument
864 queryIdOfRemoteLookup = queryId; in PhoneNumberServiceListener()
949 final int queryId; field in ContactInfoCache.CallerInfoQueryToken
952 CallerInfoQueryToken(int queryId, String callId) { in CallerInfoQueryToken() argument
953 this.queryId = queryId; in CallerInfoQueryToken()
959 private boolean isWaitingForThisQuery(String callId, int queryId) { in isWaitingForThisQuery() argument
967 int waitingQueryId = existingCacheEntry.queryId; in isWaitingForThisQuery()
968 Log.d(TAG, "waitingQueryId = " + waitingQueryId + "; queryId = " + queryId); in isWaitingForThisQuery()
969 return waitingQueryId == queryId; in isWaitingForThisQuery()