Searched refs:sessions (Results 1 - 24 of 24) sorted by relevance

/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/lib/IO/
H A DSessionSet.pm26 sessions => {},
39 # Object method: sessions()
40 # Return list of all the sessions currently in the set.
41 sub sessions { return values %{shift->{sessions}} }; subroutine
50 return $self->{sessions}{$handle} =
63 delete $self->{sessions}{$handle};
84 return $self->{sessions}{$thing} if defined (fileno $thing);
121 # Call select() to get the list of sessions that are ready for
135 # Return list of sessions tha
[all...]
H A DSessionData.pm53 # Object method: sessions()
55 sub sessions { return shift->{sset} } subroutine
130 $self->sessions->delete($self);
177 $self->sessions->activate($self,'read',$is_active);
185 $self->sessions->activate($self,'write',$is_active);
/macosx-10.9.5/CPANInternal-140/SOAP-Lite_new/lib/IO/
H A DSessionSet.pm28 sessions => {},
41 # Object method: sessions()
42 # Return list of all the sessions currently in the set.
43 sub sessions { subroutine
44 return values %{shift->{sessions}}
54 return $self->{sessions}{$handle} =
67 delete $self->{sessions}{$handle};
88 return $self->{sessions}{$thing} if defined (fileno $thing);
124 # Call select() to get the list of sessions that are ready for
138 # Return list of sessions tha
[all...]
H A DSessionData.pm57 # Object method: sessions()
59 sub sessions { subroutine
143 $self->sessions->delete($self);
192 $self->sessions->activate($self,'read',$is_active);
200 $self->sessions->activate($self,'write',$is_active);
/macosx-10.9.5/OpenSSH-186/openssh/regress/
H A Dputty-kex.sh16 cp ${OBJ}/.putty/sessions/localhost_proxy \
17 ${OBJ}/.putty/sessions/kex_$k
18 echo "KEX=$k" >> ${OBJ}/.putty/sessions/kex_$k
H A Dputty-ciphers.sh16 cp ${OBJ}/.putty/sessions/localhost_proxy \
17 ${OBJ}/.putty/sessions/cipher_$c
18 echo "Cipher=$c" >> ${OBJ}/.putty/sessions/cipher_$c
H A Dputty-transfer.sh19 cp ${OBJ}/.putty/sessions/localhost_proxy \
20 ${OBJ}/.putty/sessions/compression_$c
21 echo "Compression=$c" >> ${OBJ}/.putty/sessions/kex_$k
H A Dtest-exec.sh368 mkdir -p ${OBJ}/.putty/sessions
369 rm -f ${OBJ}/.putty/sessions/localhost_proxy
370 echo "Hostname=127.0.0.1" >> ${OBJ}/.putty/sessions/localhost_proxy
371 echo "PortNumber=$PORT" >> ${OBJ}/.putty/sessions/localhost_proxy
372 echo "ProxyMethod=5" >> ${OBJ}/.putty/sessions/localhost_proxy
373 echo "ProxyTelnetCommand=sh ${SRC}/sshd-log-wrapper.sh ${SSHD} ${TEST_SSH_LOGFILE} -i -f $OBJ/sshd_proxy" >> ${OBJ}/.putty/sessions/localhost_proxy
/macosx-10.9.5/configd-596.15/SystemConfiguration.fproj/
H A DSCDynamicStoreSetSpecificPrivate.h49 @param sessions An array of dictionaries containing information about
50 each console session on the system; NULL if no sessions are
64 CFArrayRef sessions
H A DSCDConsoleUser.c174 CFArrayRef sessions)
181 if ((user == NULL) && (sessions == NULL)) {
207 if (sessions != NULL) {
208 CFDictionarySetValue(dict, kSCPropUsersConsoleSessionInfo, sessions);
170 SCDynamicStoreSetConsoleInformation(SCDynamicStoreRef store, const char *user, uid_t uid, gid_t gid, CFArrayRef sessions) argument
/macosx-10.9.5/configd-596.15/configd.tproj/
H A Dsession.c50 static serverSessionRef *sessions = NULL; variable
51 static int nSessions = 0; /* # of allocated sessions */
74 serverSessionRef thisSession = sessions[i];
93 /* no sessions available */
105 if (sessions[0]->key != server) {
111 temp_session = sessions[0]; /* use "server" session */
157 sessions = malloc(nSessions * sizeof(serverSessionRef));
169 serverSessionRef thisSession = sessions[i];
201 sessions = reallocf(sessions, (nSession
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclsoap/tclsoap/
H A Dbeep.tcl35 variable sessions
48 # beep sessions
49 array set sessions {}
108 variable sessions
169 foreach mixerT [array name sessions] {
171 array set props $sessions($mixerT)
186 set sessions($mixerT) [array get props]
209 set sessions($mixerT) [array get props]
247 set sessions($mixerT) [array get props]
289 set sessions(
[all...]
/macosx-10.9.5/IOCDStorageFamily-51/
H A DIOCDPartitionScheme.cpp169 CDSession * sessions = 0; local
211 sessions = IONew(CDSession, kCDSessionMaxIndex + 1);
212 if ( sessions == 0 ) goto scanErr;
214 bzero(sessions, (kCDSessionMaxIndex + 1) * sizeof(CDSession));
223 // Scan the table of contents, gathering information about the sessions
267 CDSession * session = sessions + descriptor->session;
280 CDSession * session = sessions + descriptor->session;
299 if ( track->descriptor == 0 || sessions[track->session].leadOut == 0 )
327 if ( sessions[track->session ].formed ||
328 sessions[sessionMinInde
[all...]
/macosx-10.9.5/sudo-72/src/
H A Dsudoreplay.c910 /* Convert from /var/log/sudo-sessions/00/00/01/log to 000001 */
967 char pathbuf[PATH_MAX], **sessions = NULL; local
983 sessions = emalloc2(sessions_size, sizeof(char *));
1003 sessions = erealloc3(sessions, sessions_size, sizeof(char *));
1005 sessions[sessions_len++] = estrdup(dp->d_name);
1009 /* Sort and list the sessions. */
1010 qsort(sessions, sessions_len, sizeof(char *), session_compare);
1013 "%s/log", sessions[i]);
1016 error(1, "%s/%s/log", dir, sessions[
[all...]
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dsession.c148 static Session *sessions = NULL; variable
309 error("no more sessions");
600 * it to the user, otherwise multiple sessions may accumulate
838 * it to the user, otherwise multiple sessions may accumulate
1869 bzero(&sessions[id], sizeof(*sessions));
1870 sessions[id].self = id;
1871 sessions[id].used = 0;
1872 sessions[id].chanid = -1;
1873 sessions[i
[all...]
/macosx-10.9.5/postfix-252/postfix/src/smtpstone/
H A Dqmqp-source.c52 /* Run the specified number of QMQP sessions in parallel (default: 1).
464 int sessions = 1; local
532 if ((sessions = atoi(optarg)) <= 0)
648 * Start sessions.
650 while (sessions-- > 0) {
H A Dsmtp-source.c77 /* Run the specified number of SMTP sessions in parallel (default: 1).
944 int sessions = 1; local
1036 if ((sessions = atoi(optarg)) <= 0)
1164 * Start sessions.
1166 while (sessions-- > 0) {
/macosx-10.9.5/configd-596.15/SystemConfiguration.fproj/helper/
H A DSCHelper_server.c118 static CFMutableSetRef sessions = NULL; variable
119 static int sessions_closed = 0; // count of sessions recently closed
467 CFSetRemoveValue(sessions, sessionPrivate);
525 if (sessions == NULL) {
529 sessions = CFSetCreateMutable(NULL, 0, &mySetCallBacks);
531 CFSetAddValue(sessions, sessionPrivate);
549 if (sessions != NULL) {
551 CFIndex n = CFSetGetCount(sessions);
557 CFSetGetValues(sessions, vals);
1058 // the SCDynamicStore to track helper sessions
[all...]
/macosx-10.9.5/vim-53/runtime/syntax/
H A Delinks.vim94 syn keyword elinksPrefix ui dialogs leds sessions tabs timer
H A Dxml.vim38 " so that folds of previous sessions are applied.
/macosx-10.9.5/OpenSSH-186/openssh/contrib/redhat/
H A Dopenssh.spec515 - pull cvs patch to add session initialization to no-pty sessions
/macosx-10.9.5/CPANInternal-140/IO-Socket-SSL/
H A DSSL.pm2050 the new() calls (or use set_default_context()) to make use of the cached sessions.
2052 stored at one time; the oldest sessions in the cache will be removed if new ones are
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/lib/OldDocs/SOAP/
H A DLite.pm238 Provides shell for interactive SOAP sessions.
/macosx-10.9.5/CPANInternal-140/SOAP-Lite_new/lib/OldDocs/SOAP/
H A DLite.pm238 Provides shell for interactive SOAP sessions.

Completed in 242 milliseconds