Lines Matching refs:callId
148 public CallResult getCallWithId(int callId) {
151 if (entry.getValue().getCallId() == callId) {
157 if (entry.getValue().getCallId() == callId) {
860 * Gets an existing callId for a connection, or creates one if none exists.
884 int callId;
887 callId = mNextCallId.get();
890 newNextCallId = (callId == Integer.MAX_VALUE ?
891 CALL_ID_START_VALUE : callId + 1);
896 } while (!mNextCallId.compareAndSet(callId, newNextCallId));
898 return new Call(callId);
908 void onPostDialAction(Connection.PostDialState state, int callId, String remainingChars,