Home
last modified time | relevance | path

Searched refs:sessions (Results 1 – 25 of 67) sorted by relevance

123

/openbmc/google-misc/subprojects/metrics-ipmi-blobs/
H A Dhandler.cpp83 sessions[session] = nullptr; in open()
84 sessions[session] = std::move(bhs); in open()
94 auto it = sessions.find(session); in read()
95 if (it == sessions.end()) in read()
126 auto itr = sessions.find(session); in close()
127 if (itr == sessions.end()) in close()
131 sessions.erase(itr); in close()
138 auto it = sessions.find(session); in stat()
139 if (it == sessions.end()) in stat()
H A Dhandler.hpp59 sessions; member in blobs::MetricBlobHandler
/openbmc/bmcweb/features/kvm/
H A Dkvm_websocket.hpp180 static SessionMap sessions; variable
184 sessions.reserve(maxSessions); in requestRoutes()
192 if (sessions.size() == maxSessions) in requestRoutes()
198 sessions[&conn] = std::make_shared<KvmSession>(conn); in requestRoutes()
201 sessions.erase(&conn); in requestRoutes()
205 if (sessions[&conn]) in requestRoutes()
207 sessions[&conn]->onMessage(data); in requestRoutes()
/openbmc/phosphor-ipmi-blobs/example/
H A Dexample.cpp20 auto search = sessions.find(id); in getSession()
21 if (search == sessions.end()) in getSession()
58 auto findSess = sessions.find(session); in open()
59 if (findSess != sessions.end()) in open()
64 sessions[session] = ExampleBlob(session, flags); in open()
148 sessions.erase(session); in close()
/openbmc/phosphor-ipmi-blobs/
H A Dmanager.cpp101 sessions[*session] = SessionInfo(path, handler, flags); in open()
234 if (!sessions.count(lsess)) in getSession()
262 if (auto item = sessions.find(session); in getActionHandler()
263 item != sessions.end() && (item->second.flags & requiredFlags)) in getActionHandler()
274 if (auto item = sessions.find(session); item != sessions.end()) in eraseSession()
287 sessions.erase(session); in eraseSession()
303 if (timeNow - sessions[sessionId].lastActionTime >= sessionTimeout) in cleanUpStaleSessions()
/openbmc/bmcweb/features/openbmc_rest/
H A Ddbus_monitor.hpp43 static SessionMap sessions; variable
55 auto thisSession = sessions.find(connection); in onPropertyUpdate()
56 if (thisSession == sessions.end()) in onPropertyUpdate()
141 sessions.try_emplace(&conn); in requestRoutes()
144 sessions.erase(&conn); in requestRoutes()
148 const auto sessionPair = sessions.find(&conn); in requestRoutes()
149 if (sessionPair == sessions.end()) in requestRoutes()
/openbmc/openbmc-test-automation/gui/gui_test/security_and_access_menu/
H A Dtest_sessions_sub_menu.robot15 ${xpath_sessions_heading} //h1[contains(text(),'sessions')]
21 [Documentation] Verify navigation to sessions page.
34 Wait Until Keyword Succeeds 30 sec 5 sec Location Should Contain sessions
/openbmc/qemu/backends/
H A Dcryptodev-builtin.c60 CryptoDevBackendBuiltinSession *sessions[MAX_NUM_SESSIONS]; member
121 if (builtin->sessions[i] == NULL) { in cryptodev_builtin_get_unused_session_index()
303 builtin->sessions[index] = sess; in cryptodev_builtin_create_cipher_session()
365 builtin->sessions[index] = sess; in cryptodev_builtin_create_akcipher_session()
431 if (session_id >= MAX_NUM_SESSIONS || !builtin->sessions[session_id]) { in cryptodev_builtin_close_session()
435 session = builtin->sessions[session_id]; in cryptodev_builtin_close_session()
443 builtin->sessions[session_id] = NULL; in cryptodev_builtin_close_session()
557 builtin->sessions[op_info->session_id] == NULL) { in cryptodev_builtin_operation()
563 sess = builtin->sessions[op_info->session_id]; in cryptodev_builtin_operation()
594 if (builtin->sessions[i] != NULL) { in cryptodev_builtin_cleanup()
/openbmc/openbmc-test-automation/redfish/service_root/
H A Dtest_sessions_management.robot118 ${sessions}= Redfish.Get Properties /redfish/v1/SessionService/Sessions
119 Rprint Vars sessions
120 ${sessions_count}= Get length ${sessions['Members']}
122 …Valid Value sessions['@odata.id'] ['/redfish/v1/SessionService/Sessions/', '/redfish/v1/SessionS…
123 Valid Value sessions['Description'] ['Session Collection']
124 Valid Value sessions['Name'] ['Session Collection']
125 Valid Value sessions['Members@odata.count'] [${sessions_count}]
203 # sessions here will have list of all sessions location.
204 ${sessions}= Redfish.Get Attribute /redfish/v1/SessionService/Sessions Members
207 List Should Contain Value ${sessions} ${payload}
[all …]
/openbmc/bmcweb/features/virtual_media/
H A Dvm_websocket.hpp428 static SessionMap sessions; variable
456 for (const auto& session : sessions) in afterGetSocket()
472 sessions[&conn] = in afterGetSocket()
474 sessions[&conn]->run(); in afterGetSocket()
510 auto session = sessions.find(&conn); in onClose()
511 if (session == sessions.end()) in onClose()
517 sessions.erase(session); in onClose()
527 auto session = sessions.find(&conn); in onMessage()
528 if (session == sessions.end() || session->second == nullptr) in onMessage()
/openbmc/webui-vue/src/views/SecurityAndAccess/Sessions/
H A DSessions.vue8 data-test-id="sessions-input-searchSessions"
56 data-test-id="sessions-checkbox-selectAll"
68 :data-test-id="`sessions-checkbox-selectRow-${row.index}`"
86 :data-test-id="`sessions-button-disconnect-${row.index}`"
223 return this.$store.getters['sessions/allConnections'].map((session) => {
238 this.$store.dispatch('sessions/getSessionsData').finally(() => {
252 .dispatch('sessions/disconnectSessions', uris)
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/mycroft/files/
H A Dmycroft-setup.service4 After=systemd-user-sessions.service
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/nis/ypbind-mt/
H A Dypbind.service5 Before=systemd-user-sessions.service
/openbmc/openbmc/poky/meta/recipes-connectivity/inetutils/inetutils/
H A Dtelnet.xinetd.inetutils2 # description: The telnet server serves telnet sessions; it uses \
/openbmc/bmcweb/include/
H A Dsessions.hpp371 std::vector<std::shared_ptr<UserSession>> sessions; in getSessions() local
372 sessions.reserve(authTokens.size()); in getSessions()
375 sessions.push_back(session.second); in getSessions()
377 return sessions; in getSessions()
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/gnome-shell/
H A Dgnome-shell-extensions_48.0.bb21 ${datadir}/wayland-sessions \
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe/
H A Dpppoe-server.default18 # Maximum number of sessions, default is 16
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-flask-login_0.6.3.bb4 your users’ sessions over extended periods of time."
/openbmc/openbmc/poky/meta/recipes-graphics/wayland/weston-init/
H A Dweston.service12 Requires=systemd-user-sessions.service
13 After=systemd-user-sessions.service
/openbmc/openbmc/meta-google/recipes-phosphor/console/obmc-console/
H A Dserial-to-bmc@.service4 After=dev-%i.device systemd-user-sessions.service
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/numlockx/
H A Dnumlockx_1.2.bb1 SUMMARY = "Enable NumLock in X11 sessions"
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/agent-proxy/
H A Dagent-proxy_1.97.bb2 …will forward tcp or udp connections as well as allow for script multiplexing of terminal sessions."
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/gnome-session/
H A Dgnome-session_47.0.1.bb33 ${datadir}/wayland-sessions \
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/libosip2/
H A Dlibosip2_5.3.1.bb5 control SIP based sessions in their applications. SIP is a open standard \
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/libexosip2/
H A Dlibexosip2_5.3.0.bb4 layer API to control SIP (rfc3261) for sessions establishements \

123