HomeSort by relevance Sort by last modified time
    Searched refs:IpSecService (Results 1 - 6 of 6) sorted by null

  /frameworks/base/tests/net/java/com/android/server/
IpSecServiceParameterizedTest.java 57 /** Unit tests for {@link IpSecService}. */
120 IpSecService.IpSecServiceConfiguration mMockIpSecSrvConfig;
121 IpSecService mIpSecService;
141 mMockIpSecSrvConfig = mock(IpSecService.IpSecServiceConfiguration.class);
142 mIpSecService = new IpSecService(mMockContext, mMockIpSecSrvConfig);
191 IpSecService.UserRecord userRecord =
211 IpSecService.UserRecord userRecord =
213 IpSecService.RefcountedResource refcountedRecord =
342 fail("IpSecService should have thrown an error for reuse of SPI");
350 fail("IpSecService should have thrown an error for reuse of SPI")
    [all...]
IpSecServiceTest.java 68 /** Unit tests for {@link IpSecService}. */
118 IpSecService.IpSecServiceConfiguration mMockIpSecSrvConfig;
119 IpSecService mIpSecService;
125 mMockIpSecSrvConfig = mock(IpSecService.IpSecServiceConfiguration.class);
126 mIpSecService = new IpSecService(mMockContext, mMockIpSecSrvConfig);
134 IpSecService ipSecSrv = IpSecService.create(mMockContext);
170 IpSecService.UserRecord userRecord =
186 IpSecService.UserRecord userRecord =
188 IpSecService.RefcountedResource refcountedRecord
    [all...]
IpSecServiceRefcountedResourceTest.java 37 import com.android.server.IpSecService.IResource;
38 import com.android.server.IpSecService.RefcountedResource;
50 /** Unit tests for {@link IpSecService.RefcountedResource}. */
55 IpSecService.IpSecServiceConfiguration mMockIpSecSrvConfig;
56 IpSecService mIpSecService;
61 mMockIpSecSrvConfig = mock(IpSecService.IpSecServiceConfiguration.class);
62 mIpSecService = new IpSecService(mMockContext, mMockIpSecSrvConfig);
  /frameworks/base/tests/net/java/android/net/
IpSecManagerTest.java 38 import com.android.server.IpSecService;
72 private IpSecService mMockIpSecService;
83 mMockIpSecService = mock(IpSecService.class);
  /frameworks/base/services/core/java/com/android/server/
IpSecService.java 81 * <p>Synchronization in IpSecService is done on all entrypoints due to potential race conditions at
87 public class IpSecService extends IIpSecService.Stub {
88 private static final String TAG = "IpSecService";
117 * modified within blocks synchronized on IpSecService.this. We want to avoid -1
120 @GuardedBy("IpSecService.this")
154 * object from the IpSecService's tracking arrays. The removal from the arrays ensures that
194 synchronized (IpSecService.this) {
219 synchronized (IpSecService.this) {
233 * Unlinks from binder and performs IpSecService resource cleanup (removes from resource
243 @GuardedBy("IpSecService.this"
    [all...]
  /frameworks/base/services/java/com/android/server/
SystemServer.java     [all...]

Completed in 216 milliseconds