| /external/connectedappssdk/sdk/src/main/java/com/google/android/enterprise/connectedapps/internal/ |
| D | BundleCallSender.java | 50 abstract void prepareCall(long callId, int blockId, int totalBytes, byte[] bytes) in prepareCall() 57 abstract void prepareBundle(long callId, int bundleId, Bundle bundle) throws RemoteException; in prepareBundle() 60 long callId, int blockId, int totalBytes, byte[] bytes, int retries) throws RemoteException { in prepareCallAndRetry() 80 private void prepareBundleAndRetry(long callId, int bundleId, Bundle bundle, int retries) in prepareBundleAndRetry() 105 abstract byte[] call(long callId, int blockId, byte[] bytes) throws RemoteException; in call() 107 private byte[] callAndRetry(long callId, int blockId, byte[] bytes, int retries) in callAndRetry() 131 abstract byte[] fetchResponse(long callId, int blockId) throws RemoteException; in fetchResponse() 137 abstract Bundle fetchResponseBundle(long callId, int bundleId) throws RemoteException; in fetchResponseBundle() 139 private byte[] fetchResponseAndRetry(long callId, int blockId, int retries) in fetchResponseAndRetry() 159 private Bundle fetchResponseBundleAndRetry(long callId, int bundleId, int retries) in fetchResponseBundleAndRetry() [all …]
|
| D | BundleCallReceiver.java | 55 public byte[] prepareResponse(long callId, Bundle responseBundle) { in prepareResponse() 87 public void prepareBundle(long callId, int bundleId, Bundle bundle) { in prepareBundle() 95 private void prepareResponseBundle(long callId, int bundleId, Bundle bundle) { in prepareResponseBundle() 103 public Bundle getPreparedResponseBundle(long callId, int bundleId) { in getPreparedResponseBundle() 111 public void prepareCall(long callId, int blockId, int numBytes, byte[] paramBytes) { in prepareCall() 139 public Bundle getPreparedCall(long callId, int blockId, byte[] paramBytes) { in getPreparedCall() 184 public byte[] getPreparedResponse(long callId, int blockId) { in getPreparedResponse()
|
| D | CrossProfileCallbackExceptionBundleCallSender.java | 36 void prepareCall(long callId, int blockId, int totalBytes, byte[] bytes) throws RemoteException { in prepareCall() 41 void prepareBundle(long callId, int bundleId, Bundle bundle) throws RemoteException { in prepareBundle() 51 byte[] call(long callId, int blockId, byte[] bytes) throws RemoteException { in call() 60 byte[] fetchResponse(long callId, int blockId) throws RemoteException { in fetchResponse() 68 Bundle fetchResponseBundle(long callId, int bundleId) throws RemoteException { in fetchResponseBundle()
|
| D | CrossProfileCallbackBundleCallSender.java | 39 void prepareCall(long callId, int blockId, int totalBytes, byte[] bytes) throws RemoteException { in prepareCall() 44 void prepareBundle(long callId, int bundleId, Bundle bundle) throws RemoteException { in prepareBundle() 54 byte[] call(long callId, int blockId, byte[] bytes) throws RemoteException { in call() 63 byte[] fetchResponse(long callId, int blockId) throws RemoteException { in fetchResponse() 71 Bundle fetchResponseBundle(long callId, int bundleId) throws RemoteException { in fetchResponseBundle()
|
| D | CrossProfileBundleCallSender.java | 51 void prepareCall(long callId, int blockId, int numBytes, byte[] params) throws RemoteException { in prepareCall() 56 void prepareBundle(long callId, int bundleId, Bundle bundle) throws RemoteException { in prepareBundle() 61 byte[] call(long callId, int blockId, byte[] params) throws RemoteException { in call() 67 byte[] fetchResponse(long callId, int blockId) throws RemoteException { in fetchResponse() 72 Bundle fetchResponseBundle(long callId, int bundleId) throws RemoteException { in fetchResponseBundle()
|
| /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/ |
| D | InCallServiceImpl.java | 95 public static void onCallAdded(String callId, Call call) { in onCallAdded() 104 public static void onCallRemoved(String callId, Call call) { in onCallRemoved() 149 CallEvent(String callId, EventType event) { in CallEvent() 165 VideoCallEvent(String callId, EventType event) { in VideoCallEvent() 201 public CallCallback(String callId, int events) { in CallCallback() 301 String callId = getCallId(call); in onVideoCallChanged() local 409 public VideoCallCallback(String callId, int listeners) { in VideoCallCallback() 703 public static Call getCallById(String callId) { in getCallById() 714 private static CallCallback getCallCallbackById(String callId) { in getCallCallbackById() 725 private static InCallService.VideoCall getVideoCallById(String callId) { in getVideoCallById() [all …]
|
| /external/grpc-grpc-java/services/src/main/java/io/grpc/services/ |
| D | BinlogHelper.java | 135 long callId, in logClientHeader() 178 long callId, in logServerHeader() 208 long callId, in logTrailer() 250 long callId) { in logRpcMessage() 270 void logHalfClose(long seq, GrpcLogEntry.Logger logger, long callId) { in logHalfClose() 281 void logCancel(long seq, GrpcLogEntry.Logger logger, long callId) { in logCancel() 315 long callId, in logClientHeader() 327 long callId, in logServerHeader() 340 long callId, in logTrailer() 354 long callId); in logRpcMessage() [all …]
|
| /external/connectedappssdk/sdk/src/main/aidl/com/google/android/enterprise/connectedapps/ |
| D | ICrossProfileService.aidl | 31 void prepareCall(long callId, int blockId, int numBytes, in byte[] params); in prepareCall() 34 void prepareBundle(long callId, int bundleId, in Bundle bundle); in prepareBundle() 41 …byte[] call(long callId, int blockId, long crossProfileTypeIdentifier, int methodIdentifier, in by… in call() 44 byte[] fetchResponse(long callId, int blockId); in fetchResponse() 46 Bundle fetchResponseBundle(long callId, int bundleId); in fetchResponseBundle()
|
| D | ICrossProfileCallback.aidl | 21 void prepareResult(long callId, int blockId, int numBytes, in byte[] params); in prepareResult() 22 void prepareBundle(long callId, int bundleId, in Bundle bundle); in prepareBundle() 23 void onResult(long callId, int blockId, int methodIdentifier, in byte[] params); in onResult() 24 void onException(long callId, int blockId, in byte[] params); in onException()
|
| /external/connectedappssdk/tests/robotests/src/test/java/com/google/android/enterprise/connectedapps/ |
| D | TestStringCrossProfileCallback.java | 32 public void prepareResult(long callId, int blockId, int numBytes, byte[] params) {} in prepareResult() 35 public void prepareBundle(long callId, int bundleId, Bundle bundle) {} in prepareBundle() 38 public void onResult(long callId, int blockId, int methodIdentifier, byte[] paramsBytes) in onResult() 51 public void onException(long callId, int blockId, byte[] paramsBytes) throws RemoteException { in onException()
|
| D | TestICrossProfileCallback.java | 39 public void prepareResult(long callId, int blockId, int numBytes, byte[] params) in prepareResult() 43 public void prepareBundle(long callId, int bundleId, Bundle bundle) {} in prepareBundle() 46 public void onResult(long callId, int blockId, int methodIdentifier, byte[] params) in onResult() 58 public void onException(long callId, int blockId, byte[] params) throws RemoteException { in onException()
|
| D | TestService.java | 62 public void prepareCall(long callId, int blockId, int numBytes, byte[] paramsBytes) {} in prepareCall() 65 public void prepareBundle(long callId, int blockId, Bundle bundle) {} in prepareBundle() 69 long callId, in call() 101 public byte[] fetchResponse(long callId, int blockId) { in fetchResponse() 106 public Bundle fetchResponseBundle(long callId, int bundleId) { in fetchResponseBundle()
|
| /external/connectedappssdk/tests/robotests/src/test/java/com/google/android/enterprise/connectedapps/internal/ |
| D | BundleCallSenderTest.java | 45 void prepareCall(long callId, int blockId, int totalBytes, byte[] bytes) in prepareCall() 55 void prepareBundle(long callId, int bundleId, Bundle bundle) throws RemoteException { in prepareBundle() 64 byte[] call(long callId, int blockId, byte[] bytes) throws RemoteException { in call() 74 byte[] fetchResponse(long callId, int blockId) throws RemoteException { in fetchResponse() 83 Bundle fetchResponseBundle(long callId, int bundleId) throws RemoteException { in fetchResponseBundle()
|
| /external/nist-sip/java/javax/sip/message/ |
| D | MessageFactory.java | 16 Request createRequest(URI requestURI, String method, CallIdHeader callId, in createRequest() 21 Request createRequest(URI requestURI, String method, CallIdHeader callId, in createRequest() 26 Request createRequest(URI requestURI, String method, CallIdHeader callId, in createRequest() 32 Response createResponse(int statusCode, CallIdHeader callId, in createResponse() 37 Response createResponse(int statusCode, CallIdHeader callId, in createResponse() 42 Response createResponse(int statusCode, CallIdHeader callId, in createResponse()
|
| /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/ |
| D | CredentialsCache.java | 30 String callId; field in CredentialsCache.TimeoutTask 61 void cacheAuthorizationHeader(String callId, in cacheAuthorizationHeader() 114 public void removeAuthenticationHeader(String callId) { in removeAuthenticationHeader()
|
| /external/nist-sip/java/gov/nist/javax/sip/message/ |
| D | MessageFactoryImpl.java | 122 String method, CallIdHeader callId, CSeqHeader cSeq, in createRequest() 179 CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, in createRequest() 232 CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, in createRequest() 286 public Response createResponse(int statusCode, CallIdHeader callId, in createResponse() 343 public Response createResponse(int statusCode, CallIdHeader callId, in createResponse() 390 public Response createResponse(int statusCode, CallIdHeader callId, in createResponse() 545 String method, CallIdHeader callId, CSeqHeader cSeq, in createRequest() 598 public Response createResponse(int statusCode, CallIdHeader callId, in createResponse() 654 public Response createResponse(int statusCode, CallIdHeader callId, in createResponse()
|
| /external/nist-sip/java/gov/nist/javax/sip/header/ |
| D | InReplyTo.java | 51 protected CallIdentifier callId; field in InReplyTo 75 public void setCallId(String callId) throws ParseException { in setCallId()
|
| D | HeaderFactoryExt.java | 78 public ReplacesHeader createReplacesHeader(String callId, String toTag, in createReplacesHeader() 234 public JoinHeader createJoinHeader(String callId, String toTag, in createJoinHeader()
|
| /external/nist-sip/java/gov/nist/javax/sip/stack/ |
| D | MessageLog.java | 61 private String callId; field in MessageLog 90 String callId, in MessageLog() 123 String callId, in MessageLog()
|
| D | DefaultMessageLogFactory.java | 17 String firstLine, String tid, String callId, long tsHeaderValue) { in createLogRecord() 24 String firstLine, String tid, String callId, long timestampVal) { in createLogRecord()
|
| D | ServerLog.java | 323 String callId, String firstLine, String status, String tid, long time, in logMessage() 346 String callId = null; in logMessage() local 371 String callId = null; in logMessage() local
|
| /external/nist-sip/java/gov/nist/javax/sip/header/extensions/ |
| D | References.java | 15 private String callId; field in References 37 public void setCallId(String callId) { in setCallId()
|
| D | Join.java | 37 public String callId; field in Join 50 public Join(String callId) throws IllegalArgumentException { in Join()
|
| D | Replaces.java | 37 public String callId; field in Replaces 50 public Replaces(String callId) throws IllegalArgumentException { in Replaces()
|
| /external/nist-sip/java/javax/sip/header/ |
| D | CallIdHeader.java | 9 void setCallId(String callId) throws ParseException; in setCallId()
|