Searched refs:session (Results 1 - 25 of 29) sorted by relevance

12

/haiku/src/add-ons/kernel/partitioning_systems/session/
H A DDisc.cpp33 DBG(static const char* kModuleDebugName = "session");
95 /*! \brief Keeps track of session information.
97 struct session : public list_item { struct in inherits:list_item
99 session(uint32 index, session* next = NULL);
210 TRACE((" session = %d\n", entries[i].session));
446 // #pragma mark - session
449 /*! \brief Creates an unitialized session object
451 session function in class:session
684 session* session = (struct session*)fSessionList->First(); local
805 session* session = (struct session*)fSessionList->Find(sessionIndex); local
927 session* session = (struct session*)fSessionList->First(); local
[all...]
H A Dsession.cpp7 /*! \file session.cpp
23 #define SESSION_PARTITION_MODULE_NAME "partitioning_systems/session/v1"
55 // If we have only a single session then we can let the file system
84 Session *session = NULL; local
86 for (int i = 0; (session = disc->GetSession(i)); i++) {
88 i, partition->offset + session->Offset(), session->Size(), -1);
95 child->block_size = session->BlockSize();
96 child->flags |= session->Flags();
97 child->type = strdup(session
[all...]
H A Dscsi-mmc.h64 uint8 number; //!< track/session number
123 uint8 first; //!< First track/session in reply
124 uint8 last; //!< Last track/session in reply
143 uint8 session; member in struct:__anon13
/haiku/src/add-ons/kernel/file_cache/
H A Dlaunch_speedup.cpp6 /** This module memorizes all opened files for a certain session. A session
8 * When a session is started, it will prefetch all files from an earlier
9 * session in order to speed up the launching or booting process.
182 bool Compare(KeyType key, ValueType* session) const
184 return (session->NodeRef().device == key.device
185 && session->NodeRef().node == key.node);
211 bool Compare(KeyType key, ValueType* session) const
213 return session->Team == key;
226 stop_session(Session *session) argument
256 Session *session = new Session(team, name, device, node, seconds); local
298 Session *session = (Session *)_session; local
349 Session *session = new Session(dirent->d_name); local
721 Session *session; local
722 SessionGetter getter(team_get_current_team_id(), &session); local
750 Session *session; local
751 SessionGetter getter(team_get_current_team_id(), &session); local
815 Session *session = sTeamHash->Clear(true); local
[all...]
/haiku/src/system/libroot/posix/unistd/
H A Dprocess.c47 pid_t session = _kern_process_info(process, SESSION_ID); local
49 RETURN_AND_SET_ERRNO(session);
76 // setpgrp() never fails -- setpgid() fails when the process is a session
/haiku/src/add-ons/media/plugins/rtsp_streamer/
H A Drtsp.cpp101 // Create a media session object from this SDP description:
102 client->session = MediaSession::createNew(env, sdpDescription);
104 if (client->session == NULL) {
111 } else if (!client->session->hasSubsessions()) {
112 env << *rtspClient << "This session has no media subsessions"
118 // Then, create and set up our data source objects for the session.
119 // We do this by iterating over the session's 'subsessions',
123 client->iter = new MediaSubsessionIterator(*client->session);
171 if (client->session->absStartTime() != NULL) {
174 rtspClient->sendPlayCommand(*client->session, continueAfterPLA
309 MediaSession& session = subsession->parentSession(); local
[all...]
H A DRTSPMediaIO.cpp104 session(NULL),
124 if (session != NULL) {
125 UsageEnvironment& env = session->envir();
127 Medium::close(session);
H A DRTSPMediaIO.h70 MediaSession* session; member in class:HaikuRTSPClient
/haiku/src/libs/libtelnet/
H A Dencrypt.h93 void (*session)(Session_Key *, int); member in struct:__anon4812
H A Dkerberos.c209 des_key_sched(&cred.session, sched);
276 memmove((void *)session_key, (void *)adat.session, sizeof(Block));
293 * We don't have a valid session key, so just
294 * send back a response with an empty session
H A Dkrb4encpwd.c233 memmove((void *)session_key, (void *)adat.session, sizeof(Block));
H A Dencrypt.c658 if (ep->session)
659 (*ep->session)(key, server);
/haiku/src/apps/terminal/
H A DTermWindow.cpp285 for (int32 i = 0; Session* session = _SessionAt(i); i++)
286 delete session;
1055 SessionID sessionID(*message, "session");
1056 if (Session* session = _SessionForID(sessionID)) {
1059 session->title.pattern = title;
1060 session->title.patternUserDefined = true;
1062 session->title.pattern.Truncate(0);
1063 session->title.patternUserDefined = false;
1065 _UpdateSessionTitle(_IndexOfSession(session));
1106 SessionID sessionID(*message, "session");
1121 Session* session = _SessionForID(SessionID(*message, "session")); local
1357 Session* session = new Session(_NewSessionID(), _NewSessionIndex(), local
1463 Session* session = (Session*)fSessions.RemoveItem(index); local
1552 Session* session = _SessionAt(i); local
1881 Session* session = _SessionAt(index); local
1945 Session* session = _SessionAt(index); local
[all...]
H A DTermWindow.h174 inline int32 _IndexOfSession(Session* session) const;
/haiku/src/servers/launch/
H A DLaunchDaemon.cpp734 Session* session = FindSession(user); local
735 if (session != NULL) {
737 if (session->Daemon().SendMessage(message) == B_OK)
815 Session* session = FindSession(user); local
816 if (session != NULL) {
818 if (session->Daemon().SendMessage(message) == B_OK)
849 Session* session = FindSession(user); local
850 if (session != NULL) {
852 if (session->Daemon().SendMessage(message) == B_OK)
885 Session* session local
917 Session* session = FindSession(user); local
948 Session* session = FindSession(user); local
1007 Session* session = new (std::nothrow) Session(user, target); local
1181 Session* session = FindSession(user); local
1249 Session* session = FindSession(user); local
1375 Session* session = FindSession(user); local
1986 Session* session = iterator->second; local
1991 Session* session = FindSession(user); local
[all...]
/haiku/headers/private/kernel/boot/net/
H A DiSCSITarget.h34 status_t Init(iSCSISession* session);
/haiku/headers/private/fs_shell/
H A Dfssh_drivers.h184 int32_t session; /* id of session */ member in struct:__anon23
/haiku/src/bin/
H A Ddriveinfo.c84 printf("session:\t%" B_PRId32 "\n", partition.session);
/haiku/headers/os/drivers/
H A DDrivers.h156 int32 session; /* id of session */ member in struct:__anon5
/haiku/src/system/kernel/
H A Dteam.cpp159 // A list of process groups of children of dying session leaders that need to
1018 // remove group from the hash table and from the session
1042 /*! Adds the group the given session and makes it publicly accessible.
1046 ProcessGroup::Publish(ProcessSession* session) argument
1049 PublishLocked(session);
1053 /*! Adds the group to the given session and makes it publicly accessible.
1057 ProcessGroup::PublishLocked(ProcessSession* session) argument
1061 fSession = session;
1077 // group's session." (Open Group Base Specs Issue 7)
1323 /*! Returns whether the given team is a session leade
2879 ProcessSession* session = new(std::nothrow) ProcessSession(1); local
3019 ProcessSession* session = team->group->Session(); local
3036 ProcessSession* session = team->group->Session(); local
3053 ProcessSession* session = team->group->Session(); local
3148 ProcessSession* session = team->group->Session(); local
4264 ProcessSession* session = new(std::nothrow) ProcessSession(group->id); local
[all...]
/haiku/src/tools/html5_remote_desktop/
H A DHaikuRemoteDesktop.js1024 function RemoteState(session, token)
1026 this.session = session;
1046 var context = this.session.context;
1050 this.session.removeClipping();
1085 this.session.applyClipping(this.clipRects);
1100 this.session.context.lineJoin = 'miter';
1101 this.session.context.miterLimit = 10;
1107 var context = this.session.context;
1783 this.container.className = 'session';
[all...]
/haiku/3rdparty/mmu_man/onlinedemo/
H A Dhaiku.php71 // timeout before the demo session is killed, as argument to /bin/sleep
102 // name of session and pid files in /tmp
103 define("QEMU_SESSFILE_TMPL", "qemu-haiku-session-");
106 // name of session variable holding the qemu slot; not yet used correctly
457 echo "Click here to start the session:";
480 echo "Click here to kill the session:";
562 dbg("Ready for a " . SESSION_TIMEOUT . " session.");
873 dbg("Checking if session is running...");
/haiku/src/tests/kits/net/service/
H A DCookieTest.cpp435 // NOTE: Opera testsuite considers it should be a session cookie.
477 // should not be accepted, so this will be a session cookie.
515 CPPUNIT_ASSERT_EQUAL_MESSAGE("Cookie is session only",
729 bool session; member in struct:Test::__anon1
785 CPPUNIT_ASSERT(tests[i].expected.session == cookie.IsSessionCookie());
/haiku/headers/private/kernel/
H A Dthread_types.h688 void Publish(ProcessSession* session);
689 void PublishLocked(ProcessSession* session);
/haiku/src/add-ons/kernel/file_systems/udf/
H A Dkernel_interface.cpp518 partition is. This won't work for handling multi-session semantics correctly.
570 TRACE(("\tsession: %ld\n", info.session));

Completed in 127 milliseconds

12