Home
last modified time | relevance | path

Searched refs:session_id (Results 1 – 25 of 160) sorted by relevance

1234567

/third_party/mindspore/tests/ut/python/cachetests/
Dcachetest_py.sh19 declare session_id failed_tests
40 export SESSION_ID=$session_id
45 DestroySession $session_id
51 export SESSION_ID=$session_id
80 DestroySession $session_id
84 export SESSION_ID=$session_id
138 export SESSION_ID=$session_id
143 DestroySession $session_id
152 export SESSION_ID=$session_id
166 DestroySession $session_id
[all …]
Dcachetest_lib.sh38 session_id=0
262 session_id=$(echo $result | awk '{print $NF}')
265 echo "Generated session id: ${session_id}"
279 cmd="${CACHE_ADMIN} --destroy_session ${session_id}"
/third_party/mindspore/tests/ut/python/dataset/
Dtest_cache_map.py57 session_id = int(os.environ['SESSION_ID'])
61 some_cache = ds.DatasetCache(session_id=session_id, size=0)
91 session_id = int(os.environ['SESSION_ID'])
95 some_cache = ds.DatasetCache(session_id=session_id, size=0)
116 session_id = int(os.environ['SESSION_ID'])
119 some_cache = ds.DatasetCache(session_id=session_id, size=0)
155 session_id = int(os.environ['SESSION_ID'])
159 some_cache = ds.DatasetCache(session_id=session_id, size=0)
190 session_id = int(os.environ['SESSION_ID'])
193 some_cache = ds.DatasetCache(session_id=session_id, size=0)
[all …]
Dtest_cache_nomap.py60 session_id = int(os.environ['SESSION_ID'])
70 some_cache = ds.DatasetCache(session_id=session_id, size=0)
94 session_id = int(os.environ['SESSION_ID'])
104 some_cache = ds.DatasetCache(session_id=session_id, size=0)
138 session_id = int(os.environ['SESSION_ID'])
142 some_cache = ds.DatasetCache(session_id=session_id, size=0)
186 session_id = int(os.environ['SESSION_ID'])
191 some_cache = ds.DatasetCache(session_id=session_id, size=0)
234 session_id = int(os.environ['SESSION_ID'])
239 some_cache = ds.DatasetCache(session_id=session_id, size=0)
[all …]
/third_party/cef/libcef/browser/
Dspeech_recognition_manager_delegate.cc40 void CefSpeechRecognitionManagerDelegate::OnRecognitionStart(int session_id) {} in OnRecognitionStart() argument
42 void CefSpeechRecognitionManagerDelegate::OnAudioStart(int session_id) {} in OnAudioStart() argument
45 int session_id) {} in OnEnvironmentEstimationComplete() argument
47 void CefSpeechRecognitionManagerDelegate::OnSoundStart(int session_id) {} in OnSoundStart() argument
49 void CefSpeechRecognitionManagerDelegate::OnSoundEnd(int session_id) {} in OnSoundEnd() argument
51 void CefSpeechRecognitionManagerDelegate::OnAudioEnd(int session_id) {} in OnAudioEnd() argument
54 int session_id, in OnRecognitionResults() argument
58 int session_id, in OnRecognitionError() argument
62 int session_id, in OnAudioLevelsChange() argument
66 void CefSpeechRecognitionManagerDelegate::OnRecognitionEnd(int session_id) {} in OnRecognitionEnd() argument
[all …]
Dspeech_recognition_manager_delegate.h31 void OnRecognitionStart(int session_id) override;
32 void OnAudioStart(int session_id) override;
33 void OnEnvironmentEstimationComplete(int session_id) override;
34 void OnSoundStart(int session_id) override;
35 void OnSoundEnd(int session_id) override;
36 void OnAudioEnd(int session_id) override;
37 void OnRecognitionEnd(int session_id) override;
39 int session_id,
43 int session_id,
45 void OnAudioLevelsChange(int session_id,
[all …]
/third_party/mbedtls/library/
Dssl_cache.c54 unsigned char const *session_id, in ssl_cache_find_entry() argument
73 memcmp( session_id, cur->session_id, in ssl_cache_find_entry()
93 unsigned char const *session_id, in mbedtls_ssl_cache_get() argument
106 ret = ssl_cache_find_entry( cache, session_id, session_id_len, &entry ); in mbedtls_ssl_cache_get()
128 unsigned char const *session_id, in ssl_cache_pick_writing_slot() argument
153 memcmp( session_id, cur->session_id, cur->session_id_len ) == 0 ) in ssl_cache_pick_writing_slot()
239 memset( cur->session_id, 0, sizeof( cur->session_id ) ); in ssl_cache_pick_writing_slot()
248 unsigned char const *session_id, in mbedtls_ssl_cache_set() argument
265 session_id, session_id_len, in mbedtls_ssl_cache_set()
294 if( session_id_len > sizeof( cur->session_id ) ) in mbedtls_ssl_cache_set()
[all …]
/third_party/node/src/
Dinspector_socket_server.h32 virtual void StartSession(int session_id, const std::string& target_id) = 0;
33 virtual void EndSession(int session_id) = 0;
34 virtual void MessageReceived(int session_id, const std::string& message) = 0;
61 void Send(int session_id, const std::string& message);
68 bool HandleGetRequest(int session_id, const std::string& host,
70 void SessionStarted(int session_id, const std::string& target_id,
72 void SessionTerminated(int session_id);
73 void MessageReceived(int session_id, const std::string& message) { in MessageReceived() argument
74 delegate_->MessageReceived(session_id, message); in MessageReceived()
76 SocketSession* Session(int session_id);
Dinspector_io.cc69 int session_id, in RequestToServer() argument
72 session_id_(session_id), in RequestToServer()
113 void Post(int session_id, in Post() argument
118 messages_.emplace_back(action, session_id, std::move(message)); in Post()
176 void Post(int session_id, in Post() argument
181 data_->Post(session_id, action, std::move(message)); in Post()
219 void StartSession(int session_id, const std::string& target_id) override;
220 void MessageReceived(int session_id, const std::string& message) override;
221 void EndSession(int session_id) override;
339 void InspectorIoDelegate::StartSession(int session_id, in StartSession() argument
[all …]
Dinspector_socket_server.cc180 Delegate(InspectorSocketServer* server, int session_id) in Delegate() argument
181 : server_(server), session_id_(session_id) { } in Delegate()
272 SocketSession* InspectorSocketServer::Session(int session_id) { in Session() argument
273 auto it = connected_sessions_.find(session_id); in Session()
277 void InspectorSocketServer::SessionStarted(int session_id, in SessionStarted() argument
280 SocketSession* session = Session(session_id); in SessionStarted()
285 connected_sessions_[session_id].first = id; in SessionStarted()
287 delegate_->StartSession(session_id, id); in SessionStarted()
290 void InspectorSocketServer::SessionTerminated(int session_id) { in SessionTerminated() argument
291 if (Session(session_id) == nullptr) { in SessionTerminated()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/
Dspp_client.c27 const char *session_id,
109 const char *session_id, in build_spp_post_dev_data() argument
126 if (session_id) in build_spp_post_dev_data()
128 session_id); in build_spp_post_dev_data()
328 const char *session_id, in hs20_spp_upload_mo() argument
353 node = build_spp_post_dev_data(ctx, &ns, session_id, in hs20_spp_upload_mo()
410 const char *session_id, in process_spp_user_input_response() argument
423 ctx, session_id, in process_spp_user_input_response()
429 ret = hs20_spp_update_response(ctx, session_id, "OK", NULL); in process_spp_user_input_response()
438 const char *session_id) in hs20_spp_user_input_completed() argument
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/hs20/client/
Dspp_client.c27 const char *session_id,
109 const char *session_id, in build_spp_post_dev_data() argument
126 if (session_id) in build_spp_post_dev_data()
128 session_id); in build_spp_post_dev_data()
328 const char *session_id, in hs20_spp_upload_mo() argument
353 node = build_spp_post_dev_data(ctx, &ns, session_id, in hs20_spp_upload_mo()
410 const char *session_id, in process_spp_user_input_response() argument
423 ctx, session_id, in process_spp_user_input_response()
429 ret = hs20_spp_update_response(ctx, session_id, "OK", NULL); in process_spp_user_input_response()
438 const char *session_id) in hs20_spp_user_input_completed() argument
[all …]
/third_party/mindspore/mindspore/dataset/engine/
Dcache_client.py53 …def __init__(self, session_id, size=0, spilling=False, hostname=None, port=None, num_connections=N… argument
55 check_pos_uint32(session_id, "session_id")
71 self.session_id = session_id
78 …self.cache_client = CacheClient(session_id, size, spilling, hostname, port, num_connections, prefe…
90 new_cache.session_id = copy.deepcopy(self.session_id, memodict)
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/
Deap_sake.c28 u8 session_id; member
133 sake->session_id = data->session_id; in eap_sake_build_msg()
379 u8 subtype, session_id, id; in eap_sake_process() local
391 session_id = req->session_id; in eap_sake_process()
395 "session_id %d", subtype, session_id); in eap_sake_process()
399 if (data->session_id_set && data->session_id != session_id) { in eap_sake_process()
401 session_id, data->session_id); in eap_sake_process()
405 data->session_id = session_id; in eap_sake_process()
Deap_tls.c24 u8 *session_id; member
151 os_free(data->session_id); in eap_tls_deinit()
225 os_free(data->session_id); in eap_tls_success()
226 data->session_id = eap_peer_tls_derive_session_id(sm, &data->ssl, in eap_tls_success()
229 if (data->session_id) { in eap_tls_success()
231 data->session_id, data->id_len); in eap_tls_success()
345 os_free(data->session_id); in eap_tls_init_for_reauth()
346 data->session_id = NULL; in eap_tls_init_for_reauth()
411 if (data->session_id == NULL) in eap_tls_get_session_id()
414 id = os_memdup(data->session_id, data->id_len); in eap_tls_get_session_id()
/third_party/libusb/libusb/os/
Dhaiku_pollfs.cpp97 unsigned long session_id = (unsigned long)&fDevice; in WatchedEntry() local
101 struct libusb_device *dev = usbi_get_device_by_session_id(ctx, session_id); in WatchedEntry()
103 usbi_dbg("using previously allocated device with location %lu", session_id); in WatchedEntry()
107 usbi_dbg("allocating new device with location %lu", session_id); in WatchedEntry()
108 dev = usbi_alloc_device(ctx, session_id); in WatchedEntry()
172 unsigned long session_id = (unsigned long)&fDevice; in ~WatchedEntry() local
176 dev = usbi_get_device_by_session_id(ctx, session_id); in ~WatchedEntry()
181 usbi_dbg("device with location %lu not found", session_id); in ~WatchedEntry()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/fst/
Dfst_ctrl_iface.c81 static void fst_ctrl_iface_notify(struct fst_iface *f, u32 session_id, in fst_ctrl_iface_notify() argument
149 session_id, in fst_ctrl_iface_notify()
161 session_id, in fst_ctrl_iface_notify()
171 static int session_get(const char *session_id, char *buf, size_t buflen) in session_get() argument
178 id = strtoul(session_id, NULL, 0); in session_get()
210 static int session_set(const char *session_id, char *buf, size_t buflen) in session_set() argument
217 id = strtoul(session_id, &p, 0); in session_set()
273 static int session_remove(const char *session_id, char *buf, size_t buflen) in session_remove() argument
279 id = strtoul(session_id, NULL, 0); in session_remove()
297 static int session_initiate(const char *session_id, char *buf, size_t buflen) in session_initiate() argument
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/fst/
Dfst_ctrl_iface.c81 static void fst_ctrl_iface_notify(struct fst_iface *f, u32 session_id, in fst_ctrl_iface_notify() argument
149 session_id, in fst_ctrl_iface_notify()
161 session_id, in fst_ctrl_iface_notify()
171 static int session_get(const char *session_id, char *buf, size_t buflen) in session_get() argument
178 id = strtoul(session_id, NULL, 0); in session_get()
210 static int session_set(const char *session_id, char *buf, size_t buflen) in session_set() argument
217 id = strtoul(session_id, &p, 0); in session_set()
273 static int session_remove(const char *session_id, char *buf, size_t buflen) in session_remove() argument
279 id = strtoul(session_id, NULL, 0); in session_remove()
297 static int session_initiate(const char *session_id, char *buf, size_t buflen) in session_initiate() argument
[all …]
/third_party/gstreamer/gstplugins_bad/ext/webrtc/
Dtransportstream.c130 stream->session_id = g_value_get_uint (value); in transport_stream_set_property()
151 g_value_set_uint (value, stream->session_id); in transport_stream_get_property()
211 stream->transport = gst_webrtc_dtls_transport_new (stream->session_id); in transport_stream_constructed()
221 stream->stream = _find_ice_stream_for_session (webrtc, stream->session_id); in transport_stream_constructed()
224 stream->session_id); in transport_stream_constructed()
225 _add_ice_stream_item (webrtc, stream->session_id, stream->stream); in transport_stream_constructed()
315 transport_stream_new (GstWebRTCBin * webrtc, guint session_id) in transport_stream_new() argument
320 "session-id", session_id, NULL); in transport_stream_new()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/
Deap_sake.c28 u8 session_id; member
133 sake->session_id = data->session_id; in eap_sake_build_msg()
379 u8 subtype, session_id, id; in eap_sake_process() local
391 session_id = req->session_id; in eap_sake_process()
395 "session_id %d", subtype, session_id); in eap_sake_process()
399 if (data->session_id_set && data->session_id != session_id) { in eap_sake_process()
401 session_id, data->session_id); in eap_sake_process()
405 data->session_id = session_id; in eap_sake_process()
Deap_tls.c24 u8 *session_id; member
145 os_free(data->session_id); in eap_tls_deinit()
219 os_free(data->session_id); in eap_tls_success()
220 data->session_id = eap_peer_tls_derive_session_id(sm, &data->ssl, in eap_tls_success()
223 if (data->session_id) { in eap_tls_success()
225 data->session_id, data->id_len); in eap_tls_success()
343 os_free(data->session_id); in eap_tls_init_for_reauth()
344 data->session_id = NULL; in eap_tls_init_for_reauth()
409 if (data->session_id == NULL) in eap_tls_get_session_id()
412 id = os_memdup(data->session_id, data->id_len); in eap_tls_get_session_id()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/
Deap_server_sake.c27 u8 session_id; member
70 if (os_get_random(&data->session_id, 1)) { in eap_sake_init()
76 data->session_id); in eap_sake_init()
109 sake->session_id = data->session_id; in eap_sake_build_msg()
241 u8 version, session_id, subtype; in eap_sake_check() local
252 session_id = resp->session_id; in eap_sake_check()
260 if (session_id != data->session_id) { in eap_sake_check()
262 session_id, data->session_id); in eap_sake_check()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/
Deap_server_sake.c27 u8 session_id; member
70 if (os_get_random(&data->session_id, 1)) { in eap_sake_init()
76 data->session_id); in eap_sake_init()
109 sake->session_id = data->session_id; in eap_sake_build_msg()
241 u8 version, session_id, subtype; in eap_sake_check() local
252 session_id = resp->session_id; in eap_sake_check()
260 if (session_id != data->session_id) { in eap_sake_check()
262 session_id, data->session_id); in eap_sake_check()
/third_party/mbedtls/include/mbedtls/
Dssl_cache.h68 unsigned char MBEDTLS_PRIVATE(session_id)[32]; /*!< session ID */
109 unsigned char const *session_id,
124 unsigned char const *session_id,
/third_party/openssl/test/
Dbad_dtls_test.c51 static unsigned char session_id[32]; variable
108 memcpy(session_asn1 + SS_SESSID_OFS, session_id, sizeof(session_id)); in client_session()
154 !PACKET_equal(&pkt2, session_id, sizeof(session_id))) in validate_client_hello()
258 memcpy(server_hello + SH_SESSID_OFS, session_id, sizeof(session_id)); in send_server_hello()
456 RAND_bytes(session_id, sizeof(session_id)); in test_bad_dtls()

1234567