Home
last modified time | relevance | path

Searched refs:pending (Results 1 – 25 of 905) sorted by relevance

12345678910>>...37

/third_party/gstreamer/gstreamer/tests/check/generic/
Dsinks.c30 GstState new, GstState pending) in pop_state_change_message() argument
45 fail_unless (pending == _pending, "Unexpected pending state"); in pop_state_change_message()
55 GstState current, pending; in GST_START_TEST() local
65 ret = gst_element_get_state (sink, &current, &pending, 0); in GST_START_TEST()
68 fail_unless (pending == GST_STATE_PLAYING, "bad pending state"); in GST_START_TEST()
89 GstState current, pending; in GST_START_TEST() local
97 ret = gst_element_get_state (sink, &current, &pending, 0); in GST_START_TEST()
100 fail_unless (pending == GST_STATE_PLAYING, "bad pending state"); in GST_START_TEST()
110 ret = gst_element_get_state (sink, &current, &pending, GST_CLOCK_TIME_NONE); in GST_START_TEST()
113 fail_unless (pending == GST_STATE_VOID_PENDING, "bad pending state"); in GST_START_TEST()
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DLLVMReactorDebugInfo.cpp282 if(scope.pending.location != location) in EmitVariable()
296 scope.pending = Pending{}; in EmitVariable()
297 scope.pending.name = name; in EmitVariable()
298 scope.pending.location = location; in EmitVariable()
299 scope.pending.diLocation = getLocation(backtrace, i); in EmitVariable()
300 scope.pending.value = value; in EmitVariable()
301 scope.pending.block = block; in EmitVariable()
302 scope.pending.insertAfter = insertAfter; in EmitVariable()
303 scope.pending.scope = scope.di; in EmitVariable()
309 scope.pending.addNopOnNextLine = true; in EmitVariable()
[all …]
/third_party/ltp/testcases/kernel/syscalls/sigpending/
Dsigpending02.c80 sigset_t pending; in test_sigpending() local
81 sigemptyset(&pending); in test_sigpending()
82 TEST(tested_sigpending(&pending)); in test_sigpending()
85 if (sigismember(&pending, i)) in test_sigpending()
97 sigemptyset(&pending); in test_sigpending()
98 TEST(tested_sigpending(&pending)); in test_sigpending()
100 if ((i == SIGUSR1) != sigismember(&pending, i)) in test_sigpending()
111 sigemptyset(&pending); in test_sigpending()
112 TEST(tested_sigpending(&pending)); in test_sigpending()
114 if ((i == SIGUSR1 || i == SIGUSR2) != sigismember(&pending, i)) in test_sigpending()
/third_party/weston/ivi-shell/
Divi-layout.c90 } pending; member
302 wl_list_init(&iviscrn->pending.layer_list); in create_screen()
666 if (ivisurf->pending.prop.transition_type == IVI_LAYOUT_TRANSITION_VIEW_DEFAULT) { in commit_surface_list()
673 ivisurf->pending.prop.dest_x, in commit_surface_list()
674 ivisurf->pending.prop.dest_y, in commit_surface_list()
675 ivisurf->pending.prop.dest_width, in commit_surface_list()
676 ivisurf->pending.prop.dest_height, in commit_surface_list()
677 ivisurf->pending.prop.transition_duration); in commit_surface_list()
679 if (ivisurf->pending.prop.visibility) { in commit_surface_list()
680 ivi_layout_transition_visibility_on(ivisurf, ivisurf->pending.prop.transition_duration); in commit_surface_list()
[all …]
/third_party/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_format.cc350 const char* pending = format.c_str(); // NUL terminated in format() local
351 const char* cur = pending; in format()
352 const char* end = pending + format.length(); in format()
360 if (cur != start && pending == start) { in format()
361 result.append(pending, static_cast<std::size_t>(cur - pending)); in format()
362 pending = start = cur; in format()
371 if (cur != start && pending == start) { in format()
372 std::size_t escaped = static_cast<std::size_t>(cur - pending) / 2; in format()
373 result.append(pending, escaped); in format()
374 pending += escaped * 2; in format()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_format.cc350 const char* pending = format.c_str(); // NUL terminated in format() local
351 const char* cur = pending; in format()
352 const char* end = pending + format.length(); in format()
360 if (cur != start && pending == start) { in format()
361 result.append(pending, static_cast<std::size_t>(cur - pending)); in format()
362 pending = start = cur; in format()
371 if (cur != start && pending == start) { in format()
372 std::size_t escaped = static_cast<std::size_t>(cur - pending) / 2; in format()
373 result.append(pending, escaped); in format()
374 pending += escaped * 2; in format()
[all …]
/third_party/weston/fullscreen-shell/
Dfullscreen-shell.c78 } pending; member
309 pending.surface_destroyed); in pending_surface_destroyed()
310 fsout->pending.surface = NULL; in pending_surface_destroyed()
335 fsout->pending.surface_destroyed.notify = pending_surface_destroyed; in fs_output_create()
471 if (fsout->pending.surface == configured_surface) in fs_output_configure_simple()
539 if (fsout->pending.surface != configured_surface) { in fs_output_configure_for_mode()
547 surface_subsurfaces_boundingbox(fsout->pending.surface, in fs_output_configure_for_mode()
573 mode.refresh = fsout->pending.framerate; in fs_output_configure_for_mode()
581 if (fsout->pending.mode_feedback) { in fs_output_configure_for_mode()
583 fsout->pending.mode_feedback); in fs_output_configure_for_mode()
[all …]
/third_party/gstreamer/gstplugins_good/gst/rtpmanager/
Dgstrtprtxqueue.c183 g_list_foreach (rtx->pending, (GFunc) gst_buffer_unref, NULL); in gst_rtp_rtx_queue_reset()
184 g_list_free (rtx->pending); in gst_rtp_rtx_queue_reset()
185 rtx->pending = NULL; in gst_rtp_rtx_queue_reset()
264 rtx->pending = g_list_prepend (rtx->pending, gst_buffer_ref (buffer)); in push_seqnum()
392 GList *pending; in gst_rtp_rtx_queue_chain() local
400 pending = rtx->pending; in gst_rtp_rtx_queue_chain()
401 rtx->pending = NULL; in gst_rtp_rtx_queue_chain()
404 pending = g_list_reverse (pending); in gst_rtp_rtx_queue_chain()
405 g_list_foreach (pending, (GFunc) do_push, rtx); in gst_rtp_rtx_queue_chain()
406 g_list_free (pending); in gst_rtp_rtx_queue_chain()
[all …]
/third_party/mbedtls/library/
Dmps_reader.c135 .pending = 0, in mps_reader_zero()
350 rd->pending = 0; in mbedtls_mps_reader_get()
377 rd->pending = desired - frag_remaining; in mbedtls_mps_reader_get()
380 (unsigned) rd->pending ); in mbedtls_mps_reader_get()
400 rd->pending = 0; in mbedtls_mps_reader_get()
421 mbedtls_mps_size_t pending, commit; in mbedtls_mps_reader_reclaim() local
433 pending = rd->pending; in mbedtls_mps_reader_reclaim()
439 if( pending == 0 ) in mbedtls_mps_reader_reclaim()
473 (unsigned) pending ); in mbedtls_mps_reader_reclaim()
504 acc_len_needed = backup_len + pending; in mbedtls_mps_reader_reclaim()
[all …]
/third_party/boost/libs/wave/samples/emit_custom_line_directives/
Demit_custom_line_directives.hpp63 emit_line_directive(ContextT const& ctx, ContainerT &pending, in emit_line_directive() argument
74 pending.push_back(result_type(T_POUND, "#", pos)); in emit_line_directive()
77 pending.push_back(result_type(T_SPACE, " ", pos)); in emit_line_directive()
87 pending.push_back(result_type(T_INTLIT, buffer, pos)); in emit_line_directive()
89 pending.push_back(result_type(T_SPACE, " ", pos)); in emit_line_directive()
99 pending.push_back(result_type(T_STRINGLIT, file.c_str(), pos)); in emit_line_directive()
101 pending.push_back(result_type(T_GENERATEDNEWLINE, "\n", pos)); in emit_line_directive()
/third_party/node/test/sequential/
Dtest-net-connect-econnrefused.js41 let pending;
42 for (pending = 0; pending < ATTEMPTS_PER_ROUND; pending++) {
44 console.log('pending', pending, 'rounds', rounds);
46 if (--pending > 0) return;
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
D12-1.c57 sigset_t mask, pending; in main() local
100 ret = sigpending(&pending); in main()
107 ret = sigismember(&pending, SIGUSR1); in main()
115 ret = sigismember(&pending, SIGUSR2); in main()
176 ret = sigpending(&pending); in main()
183 ret = sigismember(&pending, SIGUSR1); in main()
195 ret = sigismember(&pending, SIGUSR2); in main()
/third_party/musl/src/multibyte/
Dmbrtoc16.c8 unsigned *pending = (unsigned *)ps; in mbrtoc16() local
14 if ((int)*pending > 0) { in mbrtoc16()
15 if (pc16) *pc16 = *pending; in mbrtoc16()
16 *pending = 0; in mbrtoc16()
24 *pending = (wc & 0x3ff) + 0xdc00; in mbrtoc16()
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/gen/
Dgenerate.go250 pending := strings.Builder{}
254 if pending.Len() > 0 {
255 parts = append(parts, fmt.Sprintf(`"%v"`, pending.String()))
256 pending.Reset()
259 if pending.Len() > 0 {
260 parts = append(parts, pending.String())
261 pending.Reset()
264 pending.WriteRune(r)
267 if pending.Len() > 0 {
268 parts = append(parts, fmt.Sprintf(`"%v"`, pending.String()))
/third_party/node/deps/npm/node_modules/tunnel-agent/
Dindex.js58 var pending = self.requests[i]
59 if (pending.host === host && pending.port === port) {
63 pending.request.onSocket(socket)
95 TunnelingAgent.prototype.createConnection = function createConnection(pending) { argument
98 self.createSocket(pending, function(socket) {
102 pending.request.onSocket(socket)
105 self.emit('free', socket, pending.host, pending.port)
190 var pending = this.requests.shift()
191 if (pending) {
194 this.createConnection(pending)
/third_party/grpc/src/core/lib/iomgr/
Dtimer_custom.cc38 GPR_ASSERT(timer->pending); in grpc_custom_timer_callback()
39 timer->pending = false; in grpc_custom_timer_callback()
52 timer->pending = false; in timer_init()
57 timer->pending = true; in timer_init()
70 if (timer->pending) { in timer_cancel()
71 timer->pending = false; in timer_cancel()
/third_party/flutter/skia/third_party/externals/sdl/src/timer/
DSDL_timer.c63 SDL_Timer *pending; member
104 SDL_Timer *pending; in SDL_TimerThread() local
120 pending = data->pending; in SDL_TimerThread()
121 data->pending = NULL; in SDL_TimerThread()
132 while (pending) { in SDL_TimerThread()
133 current = pending; in SDL_TimerThread()
134 pending = pending->next; in SDL_TimerThread()
330 timer->next = data->pending; in SDL_AddTimer()
331 data->pending = timer; in SDL_AddTimer()
/third_party/python/Lib/test/test_asyncio/
Dtest_windows_utils.py28 self.assertFalse(ov1.pending)
32 self.assertTrue(ov1.pending)
43 self.assertFalse(ov2.pending)
52 self.assertFalse(ov1.pending)
54 self.assertFalse(ov2.pending)
113 self.assertFalse(ovout.pending)
114 self.assertFalse(overr.pending)
115 self.assertFalse(ovin.pending)
/third_party/glib/gio/
Dgfileenumerator.c34 guint pending : 1; member
216 if (enumerator->priv->pending) in g_file_enumerator_next_file()
235 enumerator->priv->pending = TRUE; in g_file_enumerator_next_file()
237 enumerator->priv->pending = FALSE; in g_file_enumerator_next_file()
275 if (enumerator->priv->pending) in g_file_enumerator_close()
285 enumerator->priv->pending = TRUE; in g_file_enumerator_close()
287 enumerator->priv->pending = FALSE; in g_file_enumerator_close()
303 enumerator->priv->pending = FALSE; in next_async_callback_wrapper()
372 if (enumerator->priv->pending) in g_file_enumerator_next_files_async()
383 enumerator->priv->pending = TRUE; in g_file_enumerator_next_files_async()
[all …]
Dgcontextspecificgroup.c33 GQueue pending; member
46 g_assert (!g_queue_is_empty (&css->pending)); in g_context_specific_source_dispatch()
47 signal_id = GPOINTER_TO_UINT (g_queue_pop_head (&css->pending)); in g_context_specific_source_dispatch()
49 if (g_queue_is_empty (&css->pending)) in g_context_specific_source_dispatch()
65 g_queue_clear (&css->pending); in g_context_specific_source_finalize()
88 g_queue_init (&css->pending); in g_context_specific_source_new()
264 g_queue_remove (&css->pending, ptr); in g_context_specific_group_emit()
265 g_queue_push_tail (&css->pending, ptr); in g_context_specific_group_emit()
/third_party/jerryscript/tests/debugger/
Ddo_pending_breakpoints.expected4 No breakpoint found, do you want to add a pending breakpoint? (y or [n])
7 No breakpoint found, do you want to add a pending breakpoint? (y or [n])
11 1: :1 (pending)
12 2: f() (pending)
14 out: pending-breakpoints
/third_party/weston/clients/
Dnested.c121 } pending; member
403 &surface->pending.frame_callback_list, link) in destroy_surface()
406 pixman_region32_fini(&surface->pending.damage); in destroy_surface()
459 if (surface->pending.buffer) in surface_attach()
460 wl_list_remove(&surface->pending.buffer_destroy_listener.link); in surface_attach()
462 surface->pending.buffer = buffer; in surface_attach()
463 surface->pending.newly_attached = 1; in surface_attach()
466 &surface->pending.buffer_destroy_listener); in surface_attach()
497 pixman_region32_union_rect(&surface->pending.damage, in surface_damage()
498 &surface->pending.damage, in surface_damage()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dcord_internal.cc39 absl::InlinedVector<CordRep*, Constants::kInlinedVectorSize> pending; in Destroy() local
46 pending.push_back(right); in Destroy()
78 if (!pending.empty()) { in Destroy()
79 rep = pending.back(); in Destroy()
80 pending.pop_back(); in Destroy()
/third_party/gstreamer/gstplugins_bad/ext/wpe/
DWPEThreadedView.cpp506 if (egl.pending) { in ~WPEView()
507 egl_pending = egl.pending; in ~WPEView()
508 egl.pending = nullptr; in ~WPEView()
514 if (shm.pending) { in ~WPEView()
515 GST_TRACE ("%p freeing shm pending %" GST_PTR_FORMAT, this, shm.pending); in ~WPEView()
516 shm_pending = shm.pending; in ~WPEView()
517 shm.pending = nullptr; in ~WPEView()
599 … GST_TRACE("pending %" GST_PTR_FORMAT " (%d) committed %" GST_PTR_FORMAT " (%d)", egl.pending, in image()
600 …GST_IS_EGL_IMAGE(egl.pending) ? GST_MINI_OBJECT_REFCOUNT_VALUE(GST_MINI_OBJECT_CAST(egl.pending)) … in image()
604 if (egl.pending) { in image()
[all …]
/third_party/node/test/parallel/
Dtest-fs-ready-event-stream.js9 assert.strictEqual(readStream.pending, true);
11 assert.strictEqual(readStream.pending, false);
17 assert.strictEqual(writeStream.pending, true);
19 assert.strictEqual(writeStream.pending, false);

12345678910>>...37