Searched refs:Session (Results 1 - 25 of 69) sorted by relevance

123

/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/
H A DAPISession.cpp42 Session& Session::defaultSession()
46 static Session* defaultSession = new Session(WebCore::SessionID::defaultSessionID());
50 Session& Session::legacyPrivateSession()
54 static Session* legacyPrivateSession = new Session(WebCore::SessionID::legacyPrivateSessionID());
58 Session::Session(boo function in class:API::Session
63 Session::Session(WebCore::SessionID sessionID) function in class:API::Session
[all...]
H A DAPISession.h35 class Session : public API::ObjectImpl<API::Object::Type::Session> { class in namespace:API
38 static PassRefPtr<Session> create(bool isEphemeral);
39 static Session& defaultSession();
40 static Session& legacyPrivateSession();
43 virtual ~Session();
46 explicit Session(bool isEphemeral);
47 explicit Session(WebCore::SessionID);
/macosx-10.10.1/OpenSSH-189/openssh/
H A Dsession.h30 typedef struct Session Session; typedef in typeref:struct:Session
31 struct Session { struct
73 void session_destroy_all(void (*)(Session *));
74 void session_pty_cleanup2(Session *);
76 Session *session_new(void);
77 Session *session_by_tty(char *);
78 void session_close(Session *);
H A Dsession.c111 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 *);
119 void do_login(Session *, const char *);
121 static void do_pre_login(Session *
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/C/
H A DWKSessionRef.cpp36 RefPtr<API::Session> session = API::Session::create(isEphemeral);
42 return toAPI(API::Session::APIType);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A D_WKWebsiteDataStore.mm37 return wrapper(API::Session::defaultSession());
42 RefPtr<API::Session> session = API::Session::create(true);
48 _session->API::Session::~Session();
H A D_WKWebsiteDataStoreInternal.h35 inline _WKWebsiteDataStore *wrapper(API::Session& session)
45 API::ObjectStorage<API::Session> _session;
/macosx-10.10.1/Security-57031.1.35/securityd/src/
H A Dauthhost.h31 class Session;
41 AuthHostInstance(Session &session, AuthHostType host);
44 Session &session() const;
H A Dsession.cpp29 // We represent these sessions within securityd as subclasses of class Session,
55 Session::SessionMap Session::mSessions;
56 Mutex Session::mSessionLock(Mutex::recursive);
59 const char Session::kUsername[] = "username";
60 const char Session::kRealname[] = "realname";
64 // Create a Session object from initial parameters (create)
66 Session::Session(const AuditInfo &audit, Server &server) function in class:Session
79 Syslog::notice("Session
[all...]
H A DAuthorizationMechEval.h42 AgentMechanismRef(const AuthHostType type, Session &session);
48 AgentMechanismEvaluator(uid_t uid, Session &session, const vector<string>& inMechanisms);
62 Session &mSession;
H A Dprocess.h46 class Session;
93 void changeSession(Session::SessionId sessionId);
95 Session& session() const;
H A Dconnection.h40 class Session;
89 Session &session() const { return process().session(); }
H A Dsession.h58 // A Session object represents one or more Connections that are known to
61 // is that global credentials can be shared by Connections of one Session
65 class Session : public PerSession { class in inherits:PerSession
69 Session(const CommonCriteria::AuditInfo &audit, Server &server);
70 virtual ~Session();
176 static Session &find(SessionId id, bool create); // find and optionally create
181 typedef std::map<SessionId, RefPointer<Session> > SessionMap;
188 SessionType &Session::find(SecuritySessionId id)
202 class RootSession : public Session {
217 class DynamicSession : private ReceivePort, public Session {
[all...]
H A Dprocess.cpp48 parent(Session::find(audit.sessionId(), true));
159 Session& Process::session() const
161 return parent<Session>();
192 void Process::changeSession(Session::SessionId sessionId)
195 parent(Session::find(sessionId, true));
H A Dagentquery.h53 SecurityAgentConnection(const AuthHostType type = securityAgent, Session &session = Server::session());
76 SecurityAgentXPCConnection(const AuthHostType type = securityAgent, Session &session = Server::session());
88 Session &mSession;
107 SecurityAgentQuery(const AuthHostType type = securityAgent, Session &session = Server::session());
138 SecurityAgentXPCQuery(const AuthHostType type = securityAgent, Session &session = Server::session());
224 QueryKeybagPassphrase(Session &session, int32_t retries = kMaximumAuthorizationTries);
229 Session &mSession;
236 QueryKeybagNewPassphrase(Session &session);
317 QueryInvokeMechanism(const AuthHostType type, Session &session);
H A Dauthority.h43 class Session;
47 AuthorizationToken(Session &ssn, const CredentialSet &base, const audit_token_t &auditToken, bool operateAsLeastPrivileged = false);
50 Session &session() const;
/macosx-10.10.1/IOSerialFamily-74/IOSerialFamily.kmodproj/
H A DIOSerialBSDClient.h79 struct Session { struct in class:IOSerialBSDClient
96 Session *fActiveSession;
115 boolean_t fIsClosing:1; /* Session is actively closing */
136 void initSession(Session *sp);
152 void convertFlowCtrl(Session *sp, struct termios *t);
158 void getData(Session *sp);
159 void procEvent(Session *sp);
160 void txload(Session *sp, UInt32 *wait_mask);
170 IOReturn sessionSetState(Session *sp, UInt32 state, UInt32 mask);
171 UInt32 sessionGetState(Session *s
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/cgi/session/
H A Dpstore.rb8 # This file provides the CGI::Session::PStore class, which builds
16 class Session class in class:CGI
20 # library file pstore.rb. Session data is marshalled and stored
23 # Create a new CGI::Session::PStore instance
25 # This constructor is used internally by CGI::Session. The
57 raise CGI::Session::NoSession, "uninitialized session"
105 session = CGI::Session.new(cgi, 'database_manager' => CGI::Session::PStore)
/macosx-10.10.1/ruby-106/ruby/test/cgi/
H A Dtest_cgi_session.rb32 session = CGI::Session.new(cgi,"tmpdir"=>@session_dir)
50 session = CGI::Session.new(cgi,"tmpdir"=>@session_dir)
70 session = CGI::Session.new(cgi,"tmpdir"=>@session_dir,"database_manager"=>CGI::Session::PStore)
88 session = CGI::Session.new(cgi,"tmpdir"=>@session_dir,"database_manager"=>CGI::Session::PStore)
107 session = CGI::Session.new(cgi,"tmpdir"=>@session_dir,"session_id"=>"foo")
127 session = CGI::Session.new(cgi,"tmpdir"=>@session_dir)
147 session = CGI::Session.new(cgi,"tmpdir"=>@session_dir,"session_key"=>"bar")
166 session = CGI::Session
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Dpcsc++.cpp137 // Session objects
139 Session::Session() function in class:Security::PCSC::Session
145 Session::~Session()
155 void Session::open()
172 void Session::close()
190 bool Session::check(long rc)
204 void Session::listReaders(vector<string> &readers, const char *groups)
224 void Session
[all...]
H A Dpcsc++.h95 // A Session represents the entire process state for the PCSC protocol
97 class Session { class in namespace:Security::PCSC
100 Session();
101 virtual ~Session();
136 void connect(Session &session, const char *reader,
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dpcsc++.cpp137 // Session objects
139 Session::Session() function in class:Security::PCSC::Session
145 Session::~Session()
155 void Session::open()
172 void Session::close()
190 bool Session::check(long rc)
204 void Session::listReaders(vector<string> &readers, const char *groups)
224 void Session
[all...]
H A Dpcsc++.h95 // A Session represents the entire process state for the PCSC protocol
97 class Session { class in namespace:Security::PCSC
100 Session();
101 virtual ~Session();
136 void connect(Session &session, const char *reader,
/macosx-10.10.1/apache-793/httpd/modules/session/
H A DNWGNUsession100 NLM_DESCRIPTION = Apache $(VERSION_STR) Session Module
106 NLM_THREAD_NAME = Session Module
/macosx-10.10.1/ruby-106/ruby/lib/cgi/
H A Dsession.rb19 # This file provides the CGI::Session class, which provides session
30 # A CGI::Session instance is created from a CGI object. By default,
31 # this CGI::Session instance will start a new session if none currently
43 # The Session class associates data with a session as key-value pairs.
44 # This data can be set and retrieved by indexing the Session instance
58 # data with the +database_manager+ option to CGI::Session::new. The
61 # CGI::Session::FileStore:: stores data as plain text in a flat file. Only
64 # CGI::Session::MemoryStore:: stores data in an in-memory hash. The data
67 # CGI::Session::PStore:: stores data in Marshalled format. Provided by
93 # The simplest way to do this is via cookies. The CGI::Session clas
150 class Session class in class:CGI
158 def Session::callback(dbman) #:nodoc: method in class:CGI.Session
[all...]

Completed in 116 milliseconds

123