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

123

/macosx-10.9.5/OpenSSH-186/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...]
H A Dmonitor_wrap.h82 struct Session;
85 void mm_session_pty_cleanup2(struct Session *);
/macosx-10.9.5/securityd-55199.3/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;
H A Dauthhost.cpp57 AuthHostInstance::AuthHostInstance(Session &session, AuthHostType host) :
72 Session &AuthHostInstance::session() const
74 return referent<Session>();
H A Dpcscmonitor.h118 PCSC::Session mSession; // PCSC client session
/macosx-10.9.5/IOSerialFamily-64.1.1/IOSerialFamily.kmodproj/
H A DIOSerialBSDClient.h68 struct Session { struct in class:IOSerialBSDClient
85 Session *fActiveSession;
105 boolean_t fIsClosing:1; /* Session is actively closing */
126 void initSession(Session *sp);
142 void convertFlowCtrl(Session *sp, struct termios *t);
148 void getData(Session *sp);
149 void procEvent(Session *sp);
150 void txload(Session *sp, UInt32 *wait_mask);
160 IOReturn sessionSetState(Session *sp, UInt32 state, UInt32 mask);
161 UInt32 sessionGetState(Session *s
[all...]
H A DIOSerialBSDClient.cpp967 Session *sp = &fSessions[TTY_DIALIN_INDEX];
1028 Session *sp = &fSessions[i];
1156 Session *sp = &me->fSessions[IS_TTY_OUTWARD(dev)];
1192 Session *sp = &me->fSessions[IS_TTY_OUTWARD(dev)];
1227 Session *sp = &me->fSessions[IS_TTY_OUTWARD(dev)];
1255 Session *sp = &me->fSessions[IS_TTY_OUTWARD(dev)];
1306 Session *sp = &me->fSessions[IS_TTY_OUTWARD(dev)];
1537 Session *sp = (Session *)tp->t_iokit;
1572 Session *s
[all...]
/macosx-10.9.5/ruby-104/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.9.5/ruby-104/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.9.5/Security-55471.14.18/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.9.5/Security-55471.14.18/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.9.5/CPANInternal-140/Module-Find/
H A DFind.pm85 installation. E.g. C<findsubmod CGI> will return C<CGI::Session>, but
86 not C<CGI::Session::File> .
99 installation. E.g. C<findallmod CGI> will return C<CGI::Session> and also
100 C<CGI::Session::File> .
113 installation. E.g. C<usesub CGI> will return C<CGI::Session>, but
114 not C<CGI::Session::File> .
133 Uses and returns modules found in the Module/Category subdirectories of your perl installation. E.g. C<useall CGI> will return C<CGI::Session> and also
134 C<CGI::Session::File> .
/macosx-10.9.5/ruby-104/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...]
/macosx-10.9.5/ruby-104/ruby/test/openssl/
H A Dtest_ssl_session.rb7 session = OpenSSL::SSL::Session.new <<-SESSION
51 assert(session == OpenSSL::SSL::Session.new(session.to_pem))
52 assert(session == OpenSSL::SSL::Session.new(ssl))
123 sess = OpenSSL::SSL::Session.new(DUMMY_SESSION_NO_EXT)
136 sess = OpenSSL::SSL::Session.new(DUMMY_SESSION_NO_EXT)
149 assert(OpenSSL::SSL::Session.new(DUMMY_SESSION))

Completed in 219 milliseconds

123