/third_party/pulseaudio/src/modules/ |
H A D | module-allow-passthrough.c | 52 bool moving; member 101 u->moving = true; in move_stream() 108 u->moving = false; in move_stream() 242 if (u->moving) in sink_input_move_start_cb() 251 if (u->moving) in sink_input_move_finish_cb() 287 u->moving = false; in pa__init()
|
H A D | module-remap-source.c | 273 if (output->destination_source && output->moving) in source_output_moving_cb() 274 output->moving(output, u->source); in source_output_moving_cb() 415 u->source_output->moving = source_output_moving_cb; in pa__init()
|
H A D | module-virtual-source.c | 467 if (output->destination_source && output->moving) in source_output_moving_cb() 468 output->moving(output, u->source); in source_output_moving_cb() 630 u->source_output->moving = source_output_moving_cb; in pa__init()
|
H A D | module-remap-sink.c | 457 u->sink_input->moving = sink_input_moving_cb; in pa__init()
|
H A D | module-virtual-sink.c | 609 u->sink_input->moving = sink_input_moving_cb; in pa__init()
|
H A D | module-loopback.c | 958 * default before moving the source. */ in source_output_moving_cb() 1375 * default before moving the sink. */ in sink_input_moving_cb() 1763 u->source_output->moving = source_output_moving_cb; in pa__init() 1848 u->sink_input->moving = sink_input_moving_cb; in pa__init()
|
H A D | module-virtual-surround-sink.c | 924 u->sink_input->moving = sink_input_moving_cb; in pa__init()
|
/third_party/backends/backend/ |
H A D | gt68xx_gt6816.c | 188 gt6816_is_moving (GT68xx_Device * dev, SANE_Bool * moving) in gt6816_is_moving() argument 202 *moving = SANE_FALSE; in gt6816_is_moving() 204 *moving = SANE_TRUE; in gt6816_is_moving()
|
H A D | gt68xx_gt6801.c | 220 gt6801_is_moving (GT68xx_Device * dev, SANE_Bool * moving) in gt6801_is_moving() argument 225 *moving = SANE_FALSE; in gt6801_is_moving()
|
H A D | gt68xx_gt6816.h | 62 static SANE_Status gt6816_is_moving (GT68xx_Device * dev, SANE_Bool * moving);
|
H A D | gt68xx_gt6801.h | 63 static SANE_Status gt6801_is_moving (GT68xx_Device * dev, SANE_Bool * moving);
|
H A D | gt68xx_low.h | 323 /** Check whether the scanner carriage is still moving. 326 * @param moving Returned state of the scanner: 327 * - #SANE_TRUE - the scanner carriage is still moving. 332 * *moving is valid. 334 SANE_Status (*is_moving) (GT68xx_Device * dev, SANE_Bool * moving); 889 /** Check whether the scanner carriage is still moving. 892 * @param moving Returned state of the scanner: 893 * - #SANE_TRUE - the scanner carriage is still moving. 897 * - #SANE_STATUS_GOOD - success; the status in @a *moving is valid. 901 gt68xx_device_is_moving (GT68xx_Device * dev, SANE_Bool * moving); [all...] |
H A D | artec_eplus48u.h | 541 artec48u_is_moving (Artec48U_Device * dev, SANE_Bool * moving);
|
H A D | gt68xx_low.c | 582 gt68xx_device_is_moving (GT68xx_Device * dev, SANE_Bool * moving) in gt68xx_device_is_moving() argument 586 return (*dev->model->command_set->is_moving) (dev, moving); in gt68xx_device_is_moving()
|
H A D | artec_eplus48u.c | 482 SANE_Bool moving; in artec48u_wait_for_positioning() local 486 status = artec48u_is_moving (chip, &moving); in artec48u_wait_for_positioning() 489 if (!moving) in artec48u_wait_for_positioning() 1092 artec48u_is_moving (Artec48U_Device * dev, SANE_Bool * moving) in artec48u_is_moving() argument 1107 *moving = SANE_FALSE; in artec48u_is_moving() 1109 *moving = SANE_TRUE; in artec48u_is_moving()
|
H A D | gt68xx_high.c | 436 SANE_Bool moving; in gt68xx_scanner_wait_for_positioning() local 442 status = gt68xx_device_is_moving (scanner->dev, &moving); in gt68xx_scanner_wait_for_positioning() 445 if (!moving) in gt68xx_scanner_wait_for_positioning()
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | source-output.c | 219 o->moving = NULL; in reset_callbacks() 1356 * moving, then don't allow the move. Moving requires sending a message to in pa_source_output_may_move_to() 1358 * source that is moving, there's no IO thread associated to the old in pa_source_output_may_move_to() 1361 pa_log_debug("Can't move output from filter source %s, because the filter source itself is currently moving.", in pa_source_output_may_move_to() 1611 if (o->moving) in pa_source_output_finish_move() 1612 o->moving(o, dest); in pa_source_output_finish_move() 1669 if (o->moving) in pa_source_output_fail_move() 1670 o->moving(o, NULL); in pa_source_output_fail_move()
|
H A D | sink-input.h | 208 void (*moving) (pa_sink_input *i, pa_sink *dest); /* may be NULL */ member 461 * to another sink or removed, and moving and removing involve detaching the
|
H A D | source-output.h | 171 void (*moving) (pa_source_output *o, pa_source *dest); /* may be NULL */ member 378 * will be moved to another source or removed, and moving and removing involve
|
H A D | sink-input.c | 342 i->moving = NULL; in reset_callbacks() 1841 /* If this sink input is connected to a filter sink that itself is moving, in pa_sink_input_may_move_to() 1844 * moving, there's no IO thread associated to the old sink. */ in pa_sink_input_may_move_to() 1846 pa_log_debug("Can't move input from filter sink %s, because the filter sink itself is currently moving.", in pa_sink_input_may_move_to() 2189 if (i->moving) in pa_sink_input_finish_move() 2190 i->moving(i, dest); in pa_sink_input_finish_move() 2214 // restore_render_memblockq(i); // restore is needless for moving between sinks in pa_sink_input_finish_move() 2255 if (i->moving) in pa_sink_input_fail_move() 2256 i->moving(i, NULL); in pa_sink_input_fail_move()
|
/third_party/node/deps/v8/src/logging/ |
H A D | code-events.h | 37 V(CODE_MOVING_GC, code-moving-gc) \
|
/third_party/pulseaudio/src/modules/rtp/ |
H A D | module-rtp-send.c | 460 o->moving = source_output_moving_cb; in pa__init()
|
/third_party/pulseaudio/src/modules/echo-cancel/ |
H A D | module-echo-cancel.c | 170 * adjustments include moving the playback samples before the capture 1496 if (output->destination_source && output->moving) in source_output_moving_cb() 1497 output->moving(output, u->source); in source_output_moving_cb() 1999 u->source_output->moving = source_output_moving_cb; in pa__init() 2038 u->sink_input->moving = sink_input_moving_cb; in pa__init()
|
/third_party/libunwind/libunwind/doc/ |
H A D | libunwind.tex | 120 Besides just moving the unwind cursor and reading/writing saved
|
/third_party/pcre2/pcre2/ |
H A D | RunTest.bat | 26 @rem Updated for new test 14 (moving others up a number), August 2015.
|