/commonlibrary/ets_utils/js_concurrent_module/worker/ |
H A D | message_queue.cpp | 36 queue_.pop();
in DeQueue() 56 queue_.pop();
in Clear() 70 queue_.pop();
in Pop() 91 queue_.pop();
in Clear()
|
H A D | worker.cpp | 1620 globalCallErrors_.pop(); in HandleGlobalCallError() 1630 globalCallErrors_.pop(); in ClearGlobalCallError() 2381 worker->debuggerQueue_.pop(); in HandleDebuggerTask()
|
/commonlibrary/rust/ylong_json/src/value/array/ |
H A D | vec.rs | 107 /// assert_eq!(array.pop(), None); 110 /// assert_eq!(array.pop(), Some(JsonValue::Null)); 112 pub fn pop(&mut self) -> Option<JsonValue> { in pop() functions 113 self.inner.pop() in pop() 294 /// UT test for `Array::pop`. in fmt() 301 /// 2. Calls `Array::pop`. in fmt() 306 assert_eq!(array.pop(), Some(JsonValue::new_number(1.into()))); in fmt() 307 assert_eq!(array.pop(), None); in fmt()
|
H A D | linked_list.rs | 108 /// assert_eq!(array.pop(), None); 111 /// assert_eq!(array.pop(), Some(JsonValue::Null)); 113 pub fn pop(&mut self) -> Option<JsonValue> { in pop() functions 388 /// UT test for `Array::pop`. in fmt() 395 /// 2. Calls `Array::pop`. in fmt() 400 assert_eq!(array.pop(), Some(JsonValue::new_number(1.into()))); in fmt() 401 assert_eq!(array.pop(), None); in fmt()
|
/commonlibrary/rust/ylong_http/ylong_http_client/tests/ |
H A D | sdv_async_https_pinning.rs | 72 let handle = handles_vec.pop().expect("No more handles !"); in sdv_client_public_key_pinning() 120 let handle = handles_vec.pop().expect("No more handles !"); in sdv_client_public_key_pinning() 169 let handle = handles_vec.pop().expect("No more handles !"); in sdv_client_public_key_pinning() 250 let handle = handles_vec.pop().expect("No more handles !"); in sdv_client_public_key_pinning_error()
|
H A D | sdv_async_http_client_error.rs | 121 let handle = handles.pop().unwrap(); in sdv_err_req_timeout() 198 let handle = handles.pop().unwrap(); in sdv_err_redirect_wrong_location() 262 let handle = handles.pop().unwrap(); in sdv_err_response_with_wrong_body_length()
|
H A D | sdv_async_custom_dns_resolver.rs | 58 let handle = handles_vec.pop().expect("No more handles !"); in sdv_client_custom_dns_resolver()
|
H A D | sdv_async_http_proxy.rs | 58 let handle = handles_vec.pop().expect("No more handles !"); in sdv_async_client_send_request()
|
H A D | sdv_async_http_body_io.rs | 66 let handle = handles.pop().unwrap(); in sdv_body_chunk_and_trailer()
|
/commonlibrary/ets_utils/js_concurrent_module/taskpool/ |
H A D | message_queue.h | 40 queue_.pop();
in DeQueue()
|
H A D | worker.cpp | 155 worker->debuggerQueue_.pop();
in HandleDebuggerTask()
|
/commonlibrary/rust/ylong_json/src/ |
H A D | serializer_compact.rs | 356 self.element_num.pop(); in end() 375 self.element_num.pop(); in end() 394 self.element_num.pop(); in end() 421 self.element_num.pop(); in end() 481 self.element_num.pop(); in end() 503 self.element_num.pop(); in end()
|
/commonlibrary/c_utils/base/include/ |
H A D | safe_block_queue.h | 39 * pop operations on queues. 54 * pop threads (blocked when the queue is empty) is woken up. 74 * If the queue is empty, the thread of the pop operation will be blocked 76 * If the queue is not empty, the pop operation can be performed, the first 90 queueT_.pop(); in Pop() 100 * pop threads (blocked when the queue is empty) is woken up, and <b>true</b> 121 * If the queue is not empty, the pop operation can be performed, one of the 125 * @param outtask Indicates the data of the pop operation. 134 queueT_.pop(); in PopNotWait() 190 * pop thread [all...] |
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/ |
H A D | stack.rs | 71 while self.pop().is_some() {} in drop() 107 pub(crate) fn pop(&mut self) -> Option<T> {
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/util/ |
H A D | slab.rs | 542 assert_eq!(temp.pop().unwrap(), value.id.load(SeqCst)); in ut_slab_for_each() 599 drop(address.pop().unwrap().1); in ut_slab_compact() 721 entries.pop(); in ut_slab_insert_drop_reverse() 789 let temp = free_queue_4.clone().lock().unwrap().pop().unwrap(); in ut_slab_multi_allocate() 850 free_queue_one_2.clone().lock().unwrap().pop().unwrap(), in ut_slab_multi_allocate_drop() 851 free_queue_two_2.lock().unwrap().pop().unwrap() in ut_slab_multi_allocate_drop()
|
/commonlibrary/c_utils/base/src/ |
H A D | directory_ex.cpp | 169 traverseStack.pop(); in GetDirFiles() 248 traversStack.pop(); in ForceRemoveDirectory() 310 removeStack.pop(); in ForceRemoveDirectory()
|
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/connector/ |
H A D | mod.rs | 554 let handle = handles.pop().expect("No more handles !"); in ut_ssl_tunnel_error() 592 let handle = handles.pop().expect("No more handles !"); in ut_ssl_tunnel_error() 632 let handle = handles.pop().expect("No more handles !"); in ut_ssl_tunnel_error() 679 let handle = handles.pop().expect("No more handles !"); in ut_ssl_tunnel_connect() 726 let handle = handles.pop().expect("No more handles !"); in ut_ssl_tunnel_resp_beyond_size()
|
/commonlibrary/ets_utils/js_concurrent_module/utils/locks/ |
H A D | graph.h | 196 dfsStack.pop(); in DfsBuildCycleInfo() 236 dfsStack.pop();
|
/commonlibrary/rust/ylong_http/ylong_http_client/tests/common/ |
H A D | async_utils.rs | 230 let handle = $handle_vec.pop().expect("No more handles !"); 284 let mut handle = $handle_vec.pop().expect("No more handles !");
|
H A D | sync_utils.rs | 228 let handle = $handle_vec.pop().expect("No more handles !"); 282 let mut handle = $handle_vec.pop().expect("No more handles !");
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/io/ |
H A D | read_task.rs | 411 buf.pop(); 467 output.pop(); in poll_next_line() 469 output.pop(); in poll_next_line()
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/executor/ |
H A D | sleeper.rs | 59 let res = idle_list.pop(); in pop_worker()
|
H A D | current_thread.rs | 73 fn pop(&self) -> Option<Task> { in pop() functions 294 while let Some(task) = self.scheduler.pop() {
|
/commonlibrary/rust/ylong_http/ylong_http_client/tests/tcp_server/ |
H A D | async_utils.rs | 130 let handle = $handle_vec.pop().expect("No more handles !");
|
H A D | sync_utils.rs | 124 let handle = $handle_vec.pop().expect("No more handles !");
|