HomeSort by relevance Sort by last modified time
    Searched refs:createSession (Results 1 - 25 of 270) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/nanohttpd/core/src/test/java/fi/iki/elonen/
HttpSessionHeadersTest.java 63 NanoHTTPD.HTTPSession session = this.testServer.createSession(HttpSessionHeadersTest.TEST_TEMP_FILE_MANAGER, inputStream, outputStream, inetAddress);
HttpServerTest.java 90 public HTTPSession createSession(TempFileManager tempFileManager, InputStream inputStream, OutputStream outputStream) {
94 public HTTPSession createSession(TempFileManager tempFileManager, InputStream inputStream, OutputStream outputStream, InetAddress inetAddress) {
156 NanoHTTPD.HTTPSession session = this.testServer.createSession(this.tempFileManager, inputStream, outputStream);
HttpKeepAliveTest.java 98 NanoHTTPD.HTTPSession session = HttpKeepAliveTest.this.testServer.createSession(tempFileManager, inputStream, outputStream);
  /frameworks/av/drm/mediadrm/plugins/clearkey/
SessionLibrary.h 34 android::sp<Session> createSession();
SessionLibrary.cpp 46 sp<Session> SessionLibrary::createSession() {
DrmPlugin.cpp 33 sp<Session> session = mSessionLibrary->createSession();
  /frameworks/base/media/java/android/media/tv/
ITvInputService.aidl 32 void createSession(in InputChannel channel, in ITvInputSessionCallback callback,
  /frameworks/opt/net/voip/src/java/android/net/sip/
ISipService.aidl 38 ISipSession createSession(in SipProfile localProfile,
SipManager.java 509 ISipSession session = mSipService.createSession(localProfile,
514 "SipService.createSession() returns null");
536 ISipSession session = mSipService.createSession(localProfile,
541 "SipService.createSession() returns null");
589 ISipSession s = mSipService.createSession(localProfile, null,
  /frameworks/base/core/java/android/content/pm/
IPackageInstaller.aidl 31 int createSession(in PackageInstaller.SessionParams params, String installerPackageName, int userId);
  /frameworks/base/core/java/com/android/internal/view/
IInputMethod.aidl 44 void createSession(in InputChannel channel, IInputSessionCallback callback);
  /frameworks/base/media/java/android/media/session/
ISessionManager.aidl 34 ISession createSession(String packageName, in ISessionCallback cb, String tag, int userId);
  /frameworks/base/core/java/android/view/inputmethod/
InputMethod.java 53 * {@link #createSession(android.view.inputmethod.InputMethod.SessionCallback)}
198 public void createSession(SessionCallback callback);
210 * {@link #createSession(android.view.inputmethod.InputMethod.SessionCallback)}.
  /frameworks/base/tools/layoutlib/legacy/src/com/android/layoutlib/bridge/
Bridge.java 67 public RenderSession createSession(SessionParams params) {
  /development/samples/SpellChecker/SampleSpellCheckerService/src/com/example/android/samplespellcheckerservice/
SampleSpellCheckerService.java 33 public Session createSession() {
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/server/
AbstractFtpServerTestCase.java 146 assertEquals(ftpServer.createSession(new Socket()).getClass(), DefaultSession.class);
  /frameworks/base/core/java/android/inputmethodservice/
AbstractInputMethodService.java 65 public void createSession(SessionCallback callback) {
IInputMethodWrapper.java 182 inputMethod.createSession(new InputMethodSessionCallbackWrapper(
264 public void createSession(InputChannel channel, IInputSessionCallback callback) {
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/server/
AbstractFtpServer.java 156 Session session = createSession(clientSocket);
345 protected Session createSession(Socket clientSocket) {
  /cts/hostsidetests/devicepolicy/app/PackageInstaller/src/com/android/cts/packageinstaller/
BasePackageInstallTest.java 139 int sessionId = mPackageInstaller.createSession(params);
  /frameworks/base/tests/OneMedia/src/com/android/onemedia/
PlayerService.java 50 mSession.createSession();
  /cts/tests/camera/src/android/hardware/camera2/cts/testcases/
Camera2AndroidTestCase.java 213 protected void createSession(List<Surface> outputSurfaces) throws Exception {
353 createSession(surfaces);
  /external/nanohttpd/fileupload/src/test/java/fi/iki/elonen/
TestNanoFileUpLoad.java 109 public HTTPSession createSession(TempFileManager tempFileManager, InputStream inputStream, OutputStream outputStream) {
113 public HTTPSession createSession(TempFileManager tempFileManager, InputStream inputStream, OutputStream outputStream, InetAddress inetAddress) {
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipService.java 266 public synchronized ISipSession createSession(SipProfile localProfile,
268 if (DBG) log("createSession: profile" + localProfile);
269 if (!canUseSip(opPackageName, "createSession")) {
274 if (DBG) log("createSession: mNetworkType==-1 ret=null");
279 return group.createSession(listener);
281 if (DBG) loge("createSession;", e);
566 public ISipSession createSession(ISipSessionListener listener) {
567 if (SSGE_DBG) log("createSession");
568 return mSipGroup.createSession(listener);
676 mGroup.createSession(null)
    [all...]
  /frameworks/base/core/java/android/service/textservice/
SpellCheckerService.java 49 * {@link #createSession()} to provide a spell checker session that is corresponding
94 public abstract Session createSession();
339 final Session session = service.createSession();

Completed in 506 milliseconds

1 2 3 4 5 6 7 8 91011