Home
last modified time | relevance | path

Searched refs:callId (Results 1 – 25 of 46) sorted by relevance

12

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
DTelecomCallFacade.java59 public Call telecomCallGetCallById(String callId) { in telecomCallGetCallById() argument
60 return InCallServiceImpl.getCallById(callId); in telecomCallGetCallById()
76 String callId) { in telecomCallDisconnect()
77 InCallServiceImpl.callDisconnect(callId); in telecomCallDisconnect()
83 String callId) { in telecomCallHold()
84 InCallServiceImpl.holdCall(callId); in telecomCallHold()
90 String callId) { in telecomCallMergeToConf()
91 InCallServiceImpl.mergeCallsInConference(callId); in telecomCallMergeToConf()
97 String callId) { in telecomCallSplitFromConf()
98 InCallServiceImpl.splitCallFromConf(callId); in telecomCallSplitFromConf()
[all …]
DInCallServiceImpl.java62 public static void onCallAdded(String callId, Call call) { in onCallAdded() argument
67 new CallEvent<Call>(callId, call)); in onCallAdded()
71 public static void onCallRemoved(String callId, Call call) { in onCallRemoved() argument
76 new CallEvent<Call>(callId, call)); in onCallRemoved()
116 CallEvent(String callId, EventType event) { in CallEvent() argument
117 mCallId = callId; in CallEvent()
132 VideoCallEvent(String callId, EventType event) { in VideoCallEvent() argument
133 super(callId, event); in VideoCallEvent()
168 public CallCallback(String callId, int events) { in CallCallback() argument
171 mCallId = callId; in CallCallback()
[all …]
/external/connectedappssdk/sdk/src/main/java/com/google/android/enterprise/connectedapps/internal/
DParcelCallReceiver.java46 public byte[] prepareResponse(long callId, Parcel responseParcel) { in prepareResponse() argument
54 preparedResponses.put(callId, responseBytes); in prepareResponse()
73 public void prepareCall(long callId, int blockId, int numBytes, byte[] paramBytes) { in prepareCall() argument
74 if (!preparedCalls.containsKey(callId)) { in prepareCall()
75 preparedCalls.put(callId, new byte[numBytes]); in prepareCall()
76 preparedCallParts.put(callId, 0); in prepareCall()
81 preparedCalls.get(callId), in prepareCall()
85 callId, in prepareCall()
86 preparedCallParts.get(callId) in prepareCall()
103 public Parcel getPreparedCall(long callId, int blockId, byte[] paramBytes) { in getPreparedCall() argument
[all …]
DParcelCallSender.java44 abstract void prepareCall(long callId, int blockId, int totalBytes, byte[] bytes) in prepareCall() argument
48 long callId, int blockId, int totalBytes, byte[] bytes, int retries) throws RemoteException { in prepareCallAndRetry() argument
51 prepareCall(callId, blockId, totalBytes, bytes); in prepareCallAndRetry()
72 abstract byte[] call(long callId, int blockId, byte[] bytes) throws RemoteException; in call() argument
74 private byte[] callAndRetry(long callId, int blockId, byte[] bytes, int retries) in callAndRetry() argument
78 return call(callId, blockId, bytes); in callAndRetry()
98 abstract byte[] fetchResponse(long callId, int blockId) throws RemoteException; in fetchResponse() argument
100 private byte[] fetchResponseAndRetry(long callId, int blockId, int retries) in fetchResponseAndRetry() argument
104 return fetchResponse(callId, blockId); in fetchResponseAndRetry()
199 private byte[] fetchReturnBytes(int totalBytes, long callId, byte[] initialBytes) in fetchReturnBytes() argument
[all …]
DCrossProfileParcelCallSender.java50 void prepareCall(long callId, int blockId, int numBytes, byte[] params) throws RemoteException { in prepareCall() argument
51 wrappedService.prepareCall(callId, blockId, numBytes, params); in prepareCall()
55 byte[] call(long callId, int blockId, byte[] params) throws RemoteException { in call() argument
57 callId, blockId, crossProfileTypeIdentifier, methodIdentifier, params, callback); in call()
61 byte[] fetchResponse(long callId, int blockId) throws RemoteException { in fetchResponse() argument
62 return wrappedService.fetchResponse(callId, blockId); in fetchResponse()
DCrossProfileCallbackExceptionParcelCallSender.java35 void prepareCall(long callId, int blockId, int totalBytes, byte[] bytes) throws RemoteException { in prepareCall() argument
36 callback.prepareResult(callId, blockId, totalBytes, bytes); in prepareCall()
45 byte[] call(long callId, int blockId, byte[] bytes) throws RemoteException { in call() argument
46 callback.onException(callId, blockId, bytes); in call()
55 byte[] fetchResponse(long callId, int blockId) throws RemoteException { in fetchResponse() argument
DCrossProfileCallbackParcelCallSender.java38 void prepareCall(long callId, int blockId, int totalBytes, byte[] bytes) throws RemoteException { in prepareCall() argument
39 callback.prepareResult(callId, blockId, totalBytes, bytes); in prepareCall()
48 byte[] call(long callId, int blockId, byte[] bytes) throws RemoteException { in call() argument
49 callback.onResult(callId, blockId, methodIdentifier, bytes); in call()
58 byte[] fetchResponse(long callId, int blockId) throws RemoteException { in fetchResponse() argument
/external/nist-sip/java/gov/nist/javax/sip/header/
DInReplyTo.java51 protected CallIdentifier callId; field in InReplyTo
64 callId = cid; in InReplyTo()
75 public void setCallId(String callId) throws ParseException { in setCallId() argument
77 this.callId = new CallIdentifier(callId); in setCallId()
90 if (callId == null) in getCallId()
92 return callId.encode(); in getCallId()
100 return callId.encode(); in encodeBody()
105 if (this.callId != null) in clone()
106 retval.callId = (CallIdentifier) this.callId.clone(); in clone()
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
DCredentialsCache.java30 String callId; field in CredentialsCache.TimeoutTask
34 this.callId = proxyDomain; in TimeoutTask()
40 authorizationHeaders.remove(callId); in run()
61 void cacheAuthorizationHeader(String callId, in cacheAuthorizationHeader() argument
64 if ( callId == null) throw new NullPointerException("Call ID is null!"); in cacheAuthorizationHeader()
67 List<AuthorizationHeader> authHeaders = authorizationHeaders.get(callId); in cacheAuthorizationHeader()
70 authorizationHeaders.put(callId, authHeaders); in cacheAuthorizationHeader()
83 TimeoutTask timeoutTask = new TimeoutTask( callId,user); in cacheAuthorizationHeader()
114 public void removeAuthenticationHeader(String callId) { in removeAuthenticationHeader() argument
115 this.authorizationHeaders.remove(callId); in removeAuthenticationHeader()
/external/nist-sip/java/gov/nist/javax/sip/message/
DMessageFactoryImpl.java122 String method, CallIdHeader callId, CSeqHeader cSeq, in createRequest() argument
126 if (requestURI == null || method == null || callId == null in createRequest()
135 sipRequest.setCallId(callId); in createRequest()
179 CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, in createRequest() argument
182 if (requestURI == null || method == null || callId == null in createRequest()
193 sipRequest.setCallId(callId); in createRequest()
232 CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, in createRequest() argument
234 if (requestURI == null || method == null || callId == null in createRequest()
244 sipRequest.setCallId(callId); in createRequest()
286 public Response createResponse(int statusCode, CallIdHeader callId, in createResponse() argument
[all …]
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/
DReferences.java15 private String callId; field in References
25 return callId; in getCallId()
37 public void setCallId(String callId) { in setCallId() argument
38 this.callId = callId; in setCallId()
76 return callId ; in encodeBody()
78 return callId + ";" + super.parameters.encode(); in encodeBody()
DReplaces.java37 public String callId; field in Replaces
50 public Replaces(String callId) throws IllegalArgumentException { in Replaces() argument
52 this.callIdentifier = new CallIdentifier(callId); in Replaces()
60 if (callId == null) in encodeBody()
63 String retVal = callId; in encodeBody()
77 return callId; in getCallId()
96 callId = cid; in setCallId()
DJoin.java37 public String callId; field in Join
50 public Join(String callId) throws IllegalArgumentException { in Join() argument
52 this.callIdentifier = new CallIdentifier(callId); in Join()
60 if (callId == null) in encodeBody()
63 String retVal = callId; in encodeBody()
77 return callId; in getCallId()
96 callId = cid; in setCallId()
/external/nist-sip/java/gov/nist/javax/sip/stack/
DMessageLog.java61 private String callId; field in MessageLog
90 String callId, in MessageLog() argument
109 this.callId = callId; in MessageLog()
123 String callId, in MessageLog() argument
136 this.callId = callId; in MessageLog()
163 + callId in toString()
DDefaultMessageLogFactory.java17 String firstLine, String tid, String callId, long tsHeaderValue) { in createLogRecord() argument
19 isSender, firstLine, tid, callId, tsHeaderValue); in createLogRecord()
24 String firstLine, String tid, String callId, long timestampVal) { in createLogRecord() argument
26 isSender, firstLine, tid, callId, timestampVal); in createLogRecord()
DServerLog.java323 String callId, String firstLine, String status, String tid, long time, in logMessage() argument
327 sender, firstLine, tid, callId, timestampVal); in logMessage()
346 String callId = null; in logMessage() local
348 callId = cid.getCallId(); in logMessage()
354 logMessage(inputText, from, to, sender, callId, firstLine, null, tid, time, tsval); in logMessage()
371 String callId = null; in logMessage() local
373 callId = cid.getCallId(); in logMessage()
379 logMessage(encoded, from, to, sender, callId, firstLine, status, tid, time, tsval); in logMessage()
/external/grpc-grpc-java/services/src/main/java/io/grpc/services/
DBinlogHelper.java135 long callId, in logClientHeader() argument
166 .setCallId(callId); in logClientHeader()
178 long callId, in logServerHeader() argument
195 .setCallId(callId); in logServerHeader()
208 long callId, in logTrailer() argument
236 .setCallId(callId); in logTrailer()
250 long callId) { in logRpcMessage() argument
265 .setCallId(callId); in logRpcMessage()
270 void logHalfClose(long seq, GrpcLogEntry.Logger logger, long callId) { in logHalfClose() argument
276 .setCallId(callId) in logHalfClose()
[all …]
/external/connectedappssdk/tests/robotests/src/test/java/com/google/android/enterprise/connectedapps/internal/
DParcelCallSenderTest.java42 void prepareCall(long callId, int blockId, int totalBytes, byte[] bytes) in prepareCall() argument
48 parcelCallReceiver.prepareCall(callId, blockId, totalBytes, bytes); in prepareCall()
52 byte[] call(long callId, int blockId, byte[] bytes) throws RemoteException { in call() argument
58 callId, parcelCallReceiver.getPreparedCall(callId, blockId, bytes)); in call()
62 byte[] fetchResponse(long callId, int blockId) throws RemoteException { in fetchResponse() argument
67 return parcelCallReceiver.getPreparedResponse(callId, blockId); in fetchResponse()
/external/nist-sip/java/javax/sip/message/
DMessageFactory.java16 Request createRequest(URI requestURI, String method, CallIdHeader callId, in createRequest() argument
21 Request createRequest(URI requestURI, String method, CallIdHeader callId, in createRequest() argument
26 Request createRequest(URI requestURI, String method, CallIdHeader callId, in createRequest() argument
32 Response createResponse(int statusCode, CallIdHeader callId, in createResponse() argument
37 Response createResponse(int statusCode, CallIdHeader callId, in createResponse() argument
42 Response createResponse(int statusCode, CallIdHeader callId, in createResponse() argument
/external/connectedappssdk/sdk/src/main/aidl/com/google/android/enterprise/connectedapps/
DICrossProfileCallback.aidl19 void prepareResult(long callId, int blockId, int numBytes, in byte[] params); in prepareResult() argument
20 void onResult(long callId, int blockId, int methodIdentifier, in byte[] params); in onResult() argument
21 void onException(long callId, int blockId, in byte[] params); in onException() argument
DICrossProfileService.aidl30 void prepareCall(long callId, int blockId, int numBytes, in byte[] params); in prepareCall() argument
37 …byte[] call(long callId, int blockId, long crossProfileTypeIdentifier, int methodIdentifier, in by… in call() argument
40 byte[] fetchResponse(long callId, int blockId); in fetchResponse() argument
/external/connectedappssdk/tests/robotests/src/test/java/com/google/android/enterprise/connectedapps/
DTestICrossProfileCallback.java37 public void prepareResult(long callId, int blockId, int numBytes, byte[] params) in prepareResult() argument
41 public void onResult(long callId, int blockId, int methodIdentifier, byte[] params) in onResult() argument
51 public void onException(long callId, int blockId, byte[] params) throws RemoteException { in onException() argument
DTestStringCrossProfileCallback.java30 public void prepareResult(long callId, int blockId, int numBytes, byte[] params) {} in prepareResult() argument
33 public void onResult(long callId, int blockId, int methodIdentifier, byte[] paramsBytes) in onResult() argument
44 public void onException(long callId, int blockId, byte[] paramsBytes) throws RemoteException { in onException() argument
DTestService.java65 public void prepareCall(long callId, int blockId, int numBytes, byte[] paramsBytes) {} in prepareCall() argument
69 long callId, in call() argument
99 public byte[] fetchResponse(long callId, int blockId) { in fetchResponse() argument
/external/grpc-grpc-java/services/src/test/java/io/grpc/services/
DBinlogHelperTest.java559 long callId = 1000; in logClientHeader() local
567 .setCallId(callId); in logClientHeader()
581 callId, in logClientHeader()
595 callId, in logClientHeader()
613 callId, in logClientHeader()
631 callId, in logClientHeader()
649 callId, in logClientHeader()
663 long callId = 1000; in logServerHeader() local
671 .setCallId(callId) in logServerHeader()
679 callId, in logServerHeader()
[all …]

12