Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/net/
DIpSecTunnelInterfaceResponse.java27 public final class IpSecTunnelInterfaceResponse implements Parcelable { class
47 public IpSecTunnelInterfaceResponse(int inStatus) { in IpSecTunnelInterfaceResponse() method in IpSecTunnelInterfaceResponse
56 public IpSecTunnelInterfaceResponse(int inStatus, int inResourceId, String inInterfaceName) { in IpSecTunnelInterfaceResponse() method in IpSecTunnelInterfaceResponse
62 private IpSecTunnelInterfaceResponse(Parcel in) { in IpSecTunnelInterfaceResponse() method in IpSecTunnelInterfaceResponse
68 …public static final @android.annotation.NonNull Parcelable.Creator<IpSecTunnelInterfaceResponse> C…
69 new Parcelable.Creator<IpSecTunnelInterfaceResponse>() {
70 public IpSecTunnelInterfaceResponse createFromParcel(Parcel in) {
71 return new IpSecTunnelInterfaceResponse(in);
74 public IpSecTunnelInterfaceResponse[] newArray(int size) {
75 return new IpSecTunnelInterfaceResponse[size];
DIIpSecService.aidl25 import android.net.IpSecTunnelInterfaceResponse;
44 IpSecTunnelInterfaceResponse createTunnelInterface( in createTunnelInterface()
DIpSecTunnelInterfaceResponse.aidl20 parcelable IpSecTunnelInterfaceResponse;
DIpSecManager.java801 IpSecTunnelInterfaceResponse result = in IpSecTunnelInterface()
/frameworks/base/tests/net/java/com/android/server/
DIpSecServiceParameterizedTest.java43 import android.net.IpSecTunnelInterfaceResponse;
581 private IpSecTunnelInterfaceResponse createAndValidateTunnel( in createAndValidateTunnel()
583 IpSecTunnelInterfaceResponse createTunnelResp = in createAndValidateTunnel()
594 IpSecTunnelInterfaceResponse createTunnelResp = in testCreateTunnelInterface()
616 IpSecTunnelInterfaceResponse createTunnelResp = in testDeleteTunnelInterface()
636 IpSecTunnelInterfaceResponse createTunnelResp = in testTunnelInterfaceBinderDeath()
666 IpSecTunnelInterfaceResponse createTunnelResp = in testApplyTunnelModeTransform()
695 IpSecTunnelInterfaceResponse createTunnelResp = in testAddRemoveAddressFromTunnelInterface()
719 IpSecTunnelInterfaceResponse createTunnelResp = in testAddTunnelFailsForBadPackageName()
/frameworks/base/tests/net/java/android/net/
DIpSecManagerTest.java263 IpSecTunnelInterfaceResponse dummyResponse = in createAndValidateVti()
264 new IpSecTunnelInterfaceResponse(IpSecManager.Status.OK, resourceId, intfName); in createAndValidateVti()
/frameworks/base/services/core/java/com/android/server/
DIpSecService.java42 import android.net.IpSecTunnelInterfaceResponse;
1277 public synchronized IpSecTunnelInterfaceResponse createTunnelInterface( in createTunnelInterface()
1292 return new IpSecTunnelInterfaceResponse(IpSecManager.Status.RESOURCE_UNAVAILABLE); in createTunnelInterface()
1345 return new IpSecTunnelInterfaceResponse(IpSecManager.Status.OK, resourceId, intfName); in createTunnelInterface()