HomeSort by relevance Sort by last modified time
    Searched refs:Session (Results 51 - 75 of 189) sorted by null

1 23 4 5 6 7 8

  /packages/apps/Camera2/src/com/android/camera/app/
PlaceholderManager.java 41 public static class Session {
46 Session(String title, Uri uri, long timestamp) {
133 public Session insertPlaceholder(String title, byte[] placeholder, long timestamp) {
164 return new Session(title, uri, timestamp);
167 public void replacePlaceholder(Session session, Location location, int orientation,
170 Storage.updateImage(session.outputUri, mContext.getContentResolver(), session.outputTitle,
171 session.time, location, orientation, exif, jpeg, width, height, mimeType);
175 l.onTaskDone(session.outputUri.getPath(), session.outputUri)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/tunnel/
pseudotcpchannel.h 35 #include "talk/p2p/base/session.h"
50 // 2) The PseudoTcp session has completed.
71 Session* session);
79 // Call this when the Session used to create this channel is being torn
81 void OnSessionTerminate(Session* session);
124 Session* session_;
  /external/chromium_org/third_party/libjingle/source/talk/session/tunnel/
pseudotcpchannel.h 35 #include "talk/p2p/base/session.h"
51 // 2) The PseudoTcp session has completed.
72 Session* session);
81 // Call this when the Session used to create this channel is being torn
83 void OnSessionTerminate(Session* session);
127 Session* session_;
  /external/chromium_org/chrome/test/chromedriver/
session_commands_unittest.cc 20 #include "chrome/test/chromedriver/session.h"
25 Session session("id");
35 Status status = ExecuteUploadFile(&session, params, &value);
65 Session session("id", scoped_ptr<Chrome>(chrome));
70 ASSERT_EQ(kOk, ExecuteQuit(false, &session, params, &value).code());
74 ASSERT_EQ(kOk, ExecuteQuit(true, &session, params, &value).code());
80 Session session("id", scoped_ptr<Chrome>(chrome))
    [all...]
element_commands.cc 24 #include "chrome/test/chromedriver/session.h"
31 Session* session,
40 session, web_view, element_id, true, &is_displayed);
45 status = IsElementFocused(session, web_view, element_id, &is_focused);
50 if (base::TimeTicks::Now() - start_time >= session->implicit_wait) {
57 Status status = IsElementEnabled(session, web_view, element_id, &is_enabled);
68 session->GetCurrentFrameId(), kFocusScript, args, &result);
73 return SendKeysOnWindow(web_view, key_list, true, &session->sticky_modifiers);
77 Session* session
    [all...]
session_commands.cc 32 #include "chrome/test/chromedriver/session.h"
104 Session* session,
107 session->driver_log.reset(
121 session->driver_log->set_min_level(driver_level);
124 // Session will own the Log's, Chrome will own the listeners.
127 &session->devtools_logs,
139 &session->chrome);
144 status = session->chrome->GetWebViewIds(&web_view_ids);
150 session->window = web_view_ids.front()
    [all...]
  /external/chromium_org/remoting/protocol/
audio_reader.h 22 class Session;
connection_to_host.cc 138 Session* session,
146 Session::State state) {
151 case Session::INITIALIZING:
152 case Session::CONNECTING:
153 case Session::ACCEPTING:
154 case Session::CONNECTED:
158 case Session::AUTHENTICATED:
189 case Session::CLOSED:
194 case Session::FAILED
    [all...]
connection_to_host.h 21 #include "remoting/protocol/session.h"
51 public Session::EventHandler,
115 Session* session,
118 // Session::EventHandler interface.
119 virtual void OnSessionStateChange(Session::State state) OVERRIDE;
157 scoped_ptr<Session> session_;
jingle_session_unittest.cc 74 void(Session*,
78 class MockSessionEventHandler : public Session::EventHandler {
80 MOCK_METHOD1(OnSessionStateChange, void(Session::State));
99 void SetHostSession(Session* session) {
100 DCHECK(session);
101 host_session_.reset(session);
104 session->set_config(SessionConfig::ForTest());
196 OnSessionStateChange(Session::CONNECTED))
200 OnSessionStateChange(Session::FAILED)
    [all...]
protocol_mock_objects.h 24 #include "remoting/protocol/session.h"
35 MockConnectionToClient(Session* session,
39 MOCK_METHOD1(Init, void(Session* session));
42 MOCK_METHOD0(session, Session*());
160 class MockSession : public Session {
165 MOCK_METHOD1(SetEventHandler, void(Session::EventHandler* event_handler));
191 MOCK_METHOD3(ConnectPtr, Session*(
    [all...]
  /external/qemu/
shaper.c 286 /* this type is used to model a session connection/state
287 * if session->packet is != NULL, then the connection is delayed
299 } SessionRec, *Session;
307 session_free( Session session )
309 if (session) {
310 if (session->packet) {
311 queued_packet_free(session->packet);
312 session->packet = NULL;
314 qemu_free( session );
426 Session session; local
484 Session session = delay->sessions; local
518 Session session = *lookup; local
531 Session session = *lookup; local
581 Session session = delay->sessions; local
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/ClientLib/
Device.h 7 * Device and Trustlet Session management Functions.
42 #include "Session.h"
50 sessionList_t sessionList; /**< MobiCore Trustlet session associated with the device */
93 * Add a session to the device.
94 * @param sessionId session ID
95 * @param connection session connection
103 * Remove the specified session from the device.
104 * The session object will be destroyed and all resources associated with it will be freed.
106 * @param sessionId Session of the session to remove
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/
call.cc 32 #include "talk/session/phone/call.h"
33 #include "talk/session/phone/mediasessionclient.h"
60 Session *session = sessions_[0]; local
61 RemoveSession(session);
62 session_client_->session_manager()->DestroySession(session);
67 Session *Call::InitiateSession(const buzz::Jid &jid,
71 Session *session = session_client_->CreateSession(this); local
72 AddSession(session, offer)
370 Session *session = call->sessions_[0]; local
    [all...]
  /frameworks/av/media/libstagefright/foundation/
ANetworkSession.cpp 56 NetworkThread(ANetworkSession *session);
69 struct ANetworkSession::Session : public RefBase {
84 Session(int32_t sessionID,
110 virtual ~Session();
141 DISALLOW_EVIL_CONSTRUCTORS(Session);
145 ANetworkSession::NetworkThread::NetworkThread(ANetworkSession *session)
146 : mSession(session) {
160 ANetworkSession::Session::Session(
216 ANetworkSession::Session::~Session()
975 sp<Session> session; local
1177 const sp<Session> session = mSessions.valueAt(index); local
1216 const sp<Session> session = mSessions.valueAt(index); local
1234 const sp<Session> session = mSessions.valueAt(index); local
1263 const sp<Session> &session = mSessions.valueAt(i); local
1322 const sp<Session> &session = mSessions.valueAt(i); local
1401 sp<Session> session = *sessionsToAdd.begin(); local
    [all...]
  /external/openssh/
session.c 1 /* $OpenBSD: session.c,v 1.258 2010/11/25 04:10:09 djm Exp $ */
90 #include "session.h"
111 Session *session_new(void);
112 void session_set_fds(Session *, int, int, int, int, int);
113 void session_pty_cleanup(Session *);
114 void session_proctitle(Session *);
115 int session_setup_x11fwd(Session *);
116 int do_exec_pty(Session *, const char *);
117 int do_exec_no_pty(Session *, const char *);
118 int do_exec(Session *, const char *)
    [all...]
  /external/chromium_org/third_party/tlslite/tlslite/
api.py 24 from Session import Session
50 from Session import Session
  /external/ganymed-ssh2/examples/
Basic.java 11 import ch.ethz.ssh2.Session;
43 /* Create a session */
45 Session sess = conn.openSession();
72 /* Close this session */
BasicWithHTTPProxy.java 12 import ch.ethz.ssh2.Session;
54 /* Create a session */
56 Session sess = conn.openSession();
83 /* Close this session */
PublicKeyAuthentication.java 12 import ch.ethz.ssh2.Session;
42 /* Create a session */
44 Session sess = conn.openSession();
62 /* Close this session */
SingleThreadStdoutStderr.java 10 import ch.ethz.ssh2.Session;
37 /* Create a session */
39 Session sess = conn.openSession();
53 * these streams while you work with Session.waitForCondition()!!!
66 * and the session's underlying channel is closed before we call waitForCondition().
123 /* Close this session */
StdoutAndStderr.java 11 import ch.ethz.ssh2.Session;
39 /* Create a session */
41 Session sess = conn.openSession();
71 /* Close this session */
UsingKnownHosts.java 13 import ch.ethz.ssh2.Session;
50 /* Create a session */
52 Session sess = conn.openSession();
69 /* Close this session */
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
SCPInputStream.java 17 private Session session; field in class:SCPInputStream
24 public SCPInputStream(SCPClient client, Session session) throws IOException
26 super(session.getStdout());
28 this.session = session;
30 OutputStream os = new BufferedOutputStream(session.getStdin(), 512);
39 int c = session.getStdout().read();
45 String line = client.receiveLine(session.getStdout())
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
callclient.h 39 #include "talk/p2p/base/session.h"
40 #include "talk/session/media/mediamessages.h"
41 #include "talk/session/media/mediasessionclient.h"
98 // Maintain a mapping of (session, ssrc) to rendered view.
99 typedef std::map<std::pair<cricket::Session*, uint32>,
193 void OnSessionCreate(cricket::Session* session, bool initiate);
197 cricket::Session* session,
198 cricket::Session::State state)
    [all...]

Completed in 382 milliseconds

1 23 4 5 6 7 8