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

  /external/chromium_org/chrome/browser/extensions/api/sessions/
session_id.h 15 class SessionId {
17 // Returns a SessionId, representing either a local or a foreign session.
20 static scoped_ptr<SessionId> Parse(const std::string& session_string);
22 // Constructs a SessionId object for the given session information.
24 // session from the SessionModelAssociator. In the case that SessionId
28 SessionId(const std::string& session_tag, int id);
30 // Returns true if the SessionId represents a foreign session.
33 // Returns the compressed std::string representation of a SessionId in the
48 DISALLOW_COPY_AND_ASSIGN(SessionId);
session_id.cc 15 scoped_ptr<SessionId> SessionId::Parse(const std::string& session_id) {
18 // Populate session_tag if the |session_id| represents a foreign SessionId.
30 return scoped_ptr<SessionId>();
32 return make_scoped_ptr(new SessionId(session_tag, id));
35 SessionId::SessionId(const std::string& session_tag, int id)
39 bool SessionId::IsForeign() const {
43 std::string SessionId::ToString() const {
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transportchannel.h 68 virtual const std::string SessionId() const { return std::string(); }
dtlstransportchannel.h 153 virtual const std::string SessionId() const {
154 return channel_->SessionId();
  /external/chromium_org/net/socket/
ssl_session_cache_openssl.cc 62 struct SessionId {
63 SessionId(const unsigned char* a_id, unsigned a_id_len)
66 explicit SessionId(const SessionId& other)
69 explicit SessionId(SSL_SESSION* session)
74 bool operator==(const SessionId& other) const {
103 struct hash<net::SessionId> {
104 std::size_t operator()(const net::SessionId& entry) const {
126 // |id_index_| is a hash table mapping SessionId values to iterators
266 // Type for a dictionary from SessionId values to key index nodes
    [all...]
  /frameworks/av/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.h 69 int SessionId; /* Current session id */

Completed in 539 milliseconds