/openbmc/google-misc/subprojects/metrics-ipmi-blobs/ |
H A D | handler.cpp | 83 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()
|
/openbmc/bmcweb/include/ |
H A D | kvm_websocket.hpp | 180 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()
|
H A D | dbus_monitor.hpp | 43 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()
|
H A D | vm_websocket.hpp | 429 static SessionMap sessions; variable 457 for (const auto& session : sessions) in afterGetSocket() 473 sessions[&conn] = in afterGetSocket() 475 sessions[&conn]->run(); in afterGetSocket() 511 auto session = sessions.find(&conn); in onClose() 512 if (session == sessions.end()) in onClose() 518 sessions.erase(session); in onClose() 528 auto session = sessions.find(&conn); in onMessage() 529 if (session == sessions.end() || session->second == nullptr) in onMessage()
|
H A D | sessions.hpp | 137 // For now, sessions that were persisted through a reboot get their idle in fromJson() 381 std::vector<std::shared_ptr<UserSession>> sessions; in getSessions() 382 sessions.reserve(authTokens.size()); in getSessions() 385 sessions.push_back(session.second); in getSessions() 387 return sessions; in removeSessionsByUsername() 378 std::vector<std::shared_ptr<UserSession>> sessions; getSessions() local
|
H A D | persistent_data.hpp | 284 nlohmann::json& sessions = data["sessions"]; in writeData() local 285 sessions = nlohmann::json::array(); in writeData() 303 sessions.emplace_back(std::move(session)); in writeData()
|
/openbmc/phosphor-ipmi-blobs/ |
H A D | manager.cpp | 101 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/phosphor-ipmi-blobs/example/ |
H A D | example.cpp | 20 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/linux/tools/perf/Documentation/ |
H A D | perf-daemon.txt | 7 perf-daemon - Run record sessions on background 24 monitors configured record sessions. 37 flight recorder sessions in above example or session that is configured 82 The signal command sends signal to configured sessions. 90 The ping command sends control ping to configured sessions. 102 Base path for daemon data. All sessions data are 114 Example with 2 record sessions: 132 Check sessions: 142 Check sessions with more info: 187 Send USR2 signal to all sessions:
|
/openbmc/linux/Documentation/ABI/testing/ |
H A D | sysfs-class-rnbd-server | 23 What: /sys/class/rnbd-server/ctl/devices/<device_name>/sessions/ 30 /sys/class/rnbd-server/ctl/devices/<device_name>/sessions/<session-name>/ 34 What: /sys/class/rnbd-server/ctl/devices/<device_name>/sessions/<session-name>/read_only 40 What: /sys/class/rnbd-server/ctl/devices/<device_name>/sessions/<session-name>/mapping_path 46 What: /sys/class/rnbd-server/ctl/devices/<device_name>/sessions/<session-name>/access_mode 52 What: /sys/class/rnbd-server/ctl/devices/<device_name>/sessions/<session-name>/force_close
|
/openbmc/qemu/backends/ |
H A D | cryptodev-builtin.c | 60 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 D | test_sessions_management.robot | 113 ${sessions}= Redfish.Get Properties /redfish/v1/SessionService/Sessions 114 Rprint Vars sessions 115 ${sessions_count}= Get length ${sessions['Members']} 117 Valid Value sessions['@odata.id'] ['/redfish/v1/SessionService/Sessions/'] 118 Valid Value sessions['Description'] ['Session Collection'] 119 Valid Value sessions['Name'] ['Session Collection'] 120 Valid Value sessions['Members@odata.count'] [${sessions_count}] 198 # sessions here will have list of all sessions location. 199 ${sessions}= Redfish.Get Attribute /redfish/v1/SessionService/Sessions Members 202 List Should Contain Value ${sessions} ${payload} [all …]
|
/openbmc/openbmc-test-automation/gui/gui_test/security_and_access_menu/ |
H A D | test_sessions_sub_menu.robot | 15 ${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/webui-vue/src/views/SecurityAndAccess/Sessions/ |
H A D | Sessions.vue | 8 data-test-id="sessions-input-searchSessions" 53 data-test-id="sessions-checkbox-selectAll" 63 :data-test-id="`sessions-checkbox-selectRow-${row.index}`" 79 :data-test-id="`sessions-button-disconnect-${row.index}`" 220 return this.$store.getters['sessions/allConnections'].map((session) => { 235 this.$store.dispatch('sessions/getSessionsData').finally(() => { 249 .dispatch('sessions/disconnectSessions', uris)
|
/openbmc/linux/tools/perf/ |
H A D | builtin-daemon.c | 91 struct list_head sessions; member 99 .sessions = LIST_HEAD_INIT(__daemon.sessions), 129 list_add_tail(&session->list, &config->sessions); in daemon__add_session() 137 list_for_each_entry(session, &daemon->sessions, list) { in daemon__find_session() 308 list_for_each_entry(session, &daemon->sessions, list) in setup_server_config() 414 list_for_each_entry(session, &daemon->sessions, list) { in handle_signalfd() 475 list_for_each_entry(session, &daemon->sessions, list) { in daemon__has_alive_session() 708 list_for_each_entry(session, &daemon->sessions, list) { in cmd_session_list() 770 list_for_each_entry(session, &daemon->sessions, list) { in cmd_session_kill() 793 list_for_each_entry(session, &daemon->sessions, list) { in cmd_session_ping() [all …]
|
/openbmc/linux/fs/smb/server/mgmt/ |
H A D | user_session.c | 182 xa_for_each(&conn->sessions, id, sess) { in ksmbd_expire_session() 187 xa_erase(&conn->sessions, sess->id); in ksmbd_expire_session() 203 return xa_err(xa_store(&conn->sessions, sess->id, sess, GFP_KERNEL)); in ksmbd_session_register() 238 xa_for_each(&conn->sessions, id, sess) { in ksmbd_sessions_deregister() 249 xa_erase(&conn->sessions, sess->id); in ksmbd_sessions_deregister() 264 sess = xa_load(&conn->sessions, id); in ksmbd_session_lookup()
|
/openbmc/linux/Documentation/networking/ |
H A D | l2tp.rst | 27 An L2TP tunnel carries one or more L2TP sessions. Each tunnel is 31 and whether it is a control or data packet. When tunnels and sessions 37 operations when establishing tunnels and sessions. The procedure looks 89 An L2TP tunnel and all of its sessions are automatically closed when 217 Ethernet sessions only. 231 Ethernet sessions only. 254 Ethernet sessions only. 334 - Delete a tunnel and all of its sessions (if any):: 484 tunnels and sessions only. Its use is discouraged. 509 keeps a list of sessions in the tunnel. When a tunnel is first [all …]
|
H A D | cdc_mbim.rst | 173 Multiplexed IP sessions (IPS) 175 MBIM allows multiplexing up to 256 IP sessions over a single USB data 176 channel. The cdc_mbim driver models such IP sessions as 802.1q VLAN 184 VLAN links prior to establishing MBIM IP sessions where the SessionId 200 sessions as another set of 802.1q VLAN subdevices of the master wwanY 240 Note that adding VLAN links for DSS sessions is entirely optional. A 276 sessions, which may not always be practical: 284 session 0 to a VLAN subdevice, similar to all other IP sessions. This 302 sessions on the shared USB data channel::
|
/openbmc/linux/sound/soc/qcom/qdsp6/ |
H A D | q6routing.c | 342 struct session_data sessions[MAX_SESSIONS]; member 374 session = &routing_data->sessions[stream_id - 1]; in q6routing_stream_open() 431 if (fedai_id == data->sessions[i].fedai_id) in get_session_from_id() 432 return &data->sessions[i]; in get_session_from_id() 476 struct session_data *session = &priv->sessions[session_id]; in msm_routing_get_audio_mixer() 498 struct session_data *session = &data->sessions[session_id]; in msm_routing_put_audio_mixer() 1093 routing_data->sessions[i].port_id = -1; in msm_routing_probe() 1094 routing_data->sessions[i].fedai_id = -1; in msm_routing_probe()
|
/openbmc/linux/fs/smb/server/ |
H A D | connection.c | 39 xa_destroy(&conn->sessions); in ksmbd_conn_free() 84 xa_init(&conn->sessions); in ksmbd_conn_alloc() 167 if (conn->binding || xa_load(&conn->sessions, sess_id)) in ksmbd_all_conn_set_status() 190 if (conn->binding || xa_load(&conn->sessions, sess_id)) { in ksmbd_conn_wait_idle_sess_id()
|
/openbmc/openbmc/poky/meta/recipes-graphics/wayland/weston-init/ |
H A D | weston.service | 12 Requires=systemd-user-sessions.service 13 After=systemd-user-sessions.service
|
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/mycroft/files/ |
H A D | mycroft-setup.service | 4 After=systemd-user-sessions.service
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/nis/ypbind-mt/ |
H A D | ypbind.service | 5 Before=systemd-user-sessions.service
|
/openbmc/openbmc/poky/meta/recipes-connectivity/inetutils/inetutils/ |
H A D | telnet.xinetd.inetutils | 2 # description: The telnet server serves telnet sessions; it uses \
|
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/gnome-shell/ |
H A D | gnome-shell-extensions_47.3.bb | 21 ${datadir}/wayland-sessions \
|