Home
last modified time | relevance | path

Searched refs:process_t (Results 1 – 25 of 207) sorted by relevance

123456789

/dports/security/tor/tor-0.4.6.8/src/lib/process/
H A Dprocess.h54 struct process_t;
55 typedef struct process_t process_t; typedef
70 process_t *process_new(const char *command);
71 void process_free_(process_t *process);
74 process_status_t process_exec(process_t *process);
75 bool process_terminate(process_t *process);
83 void process_set_exit_callback(process_t *,
94 void process_set_environment(process_t *process,
118 void process_write(process_t *process,
120 void process_vprintf(process_t *process,
[all …]
H A Dprocess.c36 struct process_t { struct
179 process_t *
184 process_t *process; in process_new()
217 process_free_(process_t *process) in process_free_()
253 process_exec(process_t *process) in process_exec()
284 process_terminate(process_t *process) in process_terminate()
303 process_get_pid(process_t *process) in process_get_pid()
530 process_write(process_t *process, in process_write()
543 process_vprintf(process_t *process, in process_vprintf()
561 process_printf(process_t *process, in process_printf()
[all …]
H A Dprocess_unix.h21 struct process_t;
31 process_status_t process_unix_exec(struct process_t *process);
32 bool process_unix_terminate(struct process_t *process);
34 process_pid_t process_unix_get_pid(struct process_t *process);
36 int process_unix_write(struct process_t *process, buf_t *buffer);
37 int process_unix_read_stdout(struct process_t *process, buf_t *buffer);
38 int process_unix_read_stderr(struct process_t *process, buf_t *buffer);
56 STATIC void process_unix_setup_handle(process_t *process,
60 STATIC int process_unix_read_handle(process_t *,
H A Dprocess_win32.h22 struct process_t;
35 process_status_t process_win32_exec(struct process_t *process);
36 bool process_win32_terminate(struct process_t *process);
38 process_pid_t process_win32_get_pid(struct process_t *process);
40 int process_win32_write(struct process_t *process, buf_t *buffer);
41 int process_win32_read_stdout(struct process_t *process, buf_t *buffer);
42 int process_win32_read_stderr(struct process_t *process, buf_t *buffer);
53 STATIC bool process_win32_timer_test_process(process_t *);
/dports/security/tor-devel/tor-0.4.7.2-alpha/src/lib/process/
H A Dprocess.h54 struct process_t;
55 typedef struct process_t process_t; typedef
70 process_t *process_new(const char *command);
71 void process_free_(process_t *process);
74 process_status_t process_exec(process_t *process);
75 bool process_terminate(process_t *process);
83 void process_set_exit_callback(process_t *,
94 void process_set_environment(process_t *process,
118 void process_write(process_t *process,
120 void process_vprintf(process_t *process,
[all …]
H A Dprocess.c36 struct process_t { struct
179 process_t *
184 process_t *process; in process_new()
217 process_free_(process_t *process) in process_free_()
253 process_exec(process_t *process) in process_exec()
284 process_terminate(process_t *process) in process_terminate()
303 process_get_pid(process_t *process) in process_get_pid()
530 process_write(process_t *process, in process_write()
543 process_vprintf(process_t *process, in process_vprintf()
561 process_printf(process_t *process, in process_printf()
[all …]
H A Dprocess_unix.h21 struct process_t;
31 process_status_t process_unix_exec(struct process_t *process);
32 bool process_unix_terminate(struct process_t *process);
34 process_pid_t process_unix_get_pid(struct process_t *process);
36 int process_unix_write(struct process_t *process, buf_t *buffer);
37 int process_unix_read_stdout(struct process_t *process, buf_t *buffer);
38 int process_unix_read_stderr(struct process_t *process, buf_t *buffer);
56 STATIC void process_unix_setup_handle(process_t *process,
60 STATIC int process_unix_read_handle(process_t *,
H A Dprocess_win32.h22 struct process_t;
35 process_status_t process_win32_exec(struct process_t *process);
36 bool process_win32_terminate(struct process_t *process);
38 process_pid_t process_win32_get_pid(struct process_t *process);
40 int process_win32_write(struct process_t *process, buf_t *buffer);
41 int process_win32_read_stdout(struct process_t *process, buf_t *buffer);
42 int process_win32_read_stderr(struct process_t *process, buf_t *buffer);
53 STATIC bool process_win32_timer_test_process(process_t *);
/dports/comms/scrcpy/scrcpy-1.9/app/src/
H A Dcommand.h21 typedef HANDLE process_t; typedef
31 typedef pid_t process_t; typedef
48 cmd_terminate(process_t pid);
51 cmd_simple_wait(process_t pid, exit_code_t *exit_code);
53 process_t
56 process_t
60 process_t
63 process_t
67 process_t
70 process_t
[all …]
H A Dcommand.c77 process_t
81 process_t process; in adb_execute()
101 process_t
112 process_t
120 process_t
131 process_t
139 process_t
156 process_t proc = adb_execute(serial, adb_cmd, ARRAY_LEN(adb_cmd)); in adb_push()
166 process_t
178 process_t proc = adb_execute(serial, adb_cmd, ARRAY_LEN(adb_cmd)); in adb_install()
[all …]
/dports/games/egoboo/egoboo-2.8.1/src/game/
H A Degoboo_process.h61 typedef struct s_process_instance process_t; typedef
65 process_t * process_init( process_t * proc );
66 bool_t process_start( process_t * proc );
67 bool_t process_kill( process_t * proc );
68 bool_t process_validate( process_t * proc );
69 bool_t process_terminate( process_t * proc );
70 bool_t process_pause( process_t * proc );
71 bool_t process_resume( process_t * proc );
72 bool_t process_running( process_t * proc );
H A Degoboo_process.c28 process_t * process_init( process_t * proc ) in process_init()
39 bool_t process_start( process_t * proc ) in process_start()
64 bool_t process_kill( process_t * proc ) in process_kill()
76 bool_t process_validate( process_t * proc ) in process_validate()
88 bool_t process_terminate( process_t * proc ) in process_terminate()
99 bool_t process_pause( process_t * proc ) in process_pause()
111 bool_t process_resume( process_t * proc ) in process_resume()
123 bool_t process_running( process_t * proc ) in process_running()
/dports/audio/wav2cdr/wav2cdr/
H A Dwav2cdr.h310 } process_t; typedef
336 void init_process_info (process_t *pinfo);
372 void process_swap_bytes (void * buf, process_t *pinfo);
373 void process_swap_words (void * buf, process_t *pinfo);
376 void process_tomono (void * buf, process_t *pinfo);
377 void process_tostereo (void * buf, process_t *pinfo);
379 void process_swap_iscale (void * buf, process_t *pinfo);
380 void process_swap_fscale (void * buf, process_t *pinfo);
382 void process_fading (void * buf, process_t *pinfo);
383 void process_silencecuts (void * buf, process_t *pinfo);
[all …]
/dports/audio/rubberband/rubberband-2.0.0/src/
H A DStretcherChannelData.h103 process_t *mag;
104 process_t *phase;
106 process_t *prevPhase;
107 process_t *prevError;
108 process_t *unwrappedPhase;
118 process_t *dblbuf; // owned by FFT object, only used for time domain FFT i/o
119 process_t *envelope; // for cepstral formant shift
H A DStretcherChannelData.cpp79 mag = allocate_and_zero<process_t>(realSize); in RecordFreeIndexPage()
80 phase = allocate_and_zero<process_t>(realSize); in RecordFreeIndexPage()
81 prevPhase = allocate_and_zero<process_t>(realSize); in RecordFreeIndexPage()
82 prevError = allocate_and_zero<process_t>(realSize); in RecordFreeIndexPage()
83 unwrappedPhase = allocate_and_zero<process_t>(realSize); in RecordFreeIndexPage()
84 envelope = allocate_and_zero<process_t>(realSize); in RecordFreeIndexPage()
87 dblbuf = allocate_and_zero<process_t>(maxSize); in RecordFreeIndexPage()
98 if (sizeof(process_t) == sizeof(double)) { in RecordFreeIndexPage()
140 if (sizeof(process_t) == sizeof(double)) {
199 if (sizeof(process_t) == sizeof(double)) {
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/gfortran.dg/
H A Dfinalize_33.f9071 public :: process_t
72 type :: process_t type
79 end type process_t
83 class(process_t), intent(inout), target :: process
89 class(process_t), intent(inout) :: process
99 use process, only: process_t
107 type(process_t), allocatable, target :: process
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/gfortran.dg/
H A Dfinalize_33.f9071 public :: process_t
72 type :: process_t type
79 end type process_t
83 class(process_t), intent(inout), target :: process
89 class(process_t), intent(inout) :: process
99 use process, only: process_t
107 type(process_t), allocatable, target :: process
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/gfortran.dg/
H A Dfinalize_33.f9071 public :: process_t
72 type :: process_t type
79 end type process_t
83 class(process_t), intent(inout), target :: process
89 class(process_t), intent(inout) :: process
99 use process, only: process_t
107 type(process_t), allocatable, target :: process
/dports/lang/gcc11/gcc-11.2.0/gcc/testsuite/gfortran.dg/
H A Dfinalize_33.f9071 public :: process_t
72 type :: process_t type
79 end type process_t
83 class(process_t), intent(inout), target :: process
89 class(process_t), intent(inout) :: process
99 use process, only: process_t
107 type(process_t), allocatable, target :: process
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/testsuite/gfortran.dg/
H A Dfinalize_33.f9071 public :: process_t
72 type :: process_t type
79 end type process_t
83 class(process_t), intent(inout), target :: process
89 class(process_t), intent(inout) :: process
99 use process, only: process_t
107 type(process_t), allocatable, target :: process
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/testsuite/gfortran.dg/
H A Dfinalize_33.f9071 public :: process_t
72 type :: process_t type
79 end type process_t
83 class(process_t), intent(inout), target :: process
89 class(process_t), intent(inout) :: process
99 use process, only: process_t
107 type(process_t), allocatable, target :: process
/dports/misc/cxx_atomics_pic/gcc-11.2.0/gcc/testsuite/gfortran.dg/
H A Dfinalize_33.f9071 public :: process_t
72 type :: process_t type
79 end type process_t
83 class(process_t), intent(inout), target :: process
89 class(process_t), intent(inout) :: process
99 use process, only: process_t
107 type(process_t), allocatable, target :: process
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/gfortran.dg/
H A Dfinalize_33.f9071 public :: process_t
72 type :: process_t type
79 end type process_t
83 class(process_t), intent(inout), target :: process
89 class(process_t), intent(inout) :: process
99 use process, only: process_t
107 type(process_t), allocatable, target :: process
/dports/lang/gcc10-devel/gcc-10-20211008/gcc/testsuite/gfortran.dg/
H A Dfinalize_33.f9071 public :: process_t
72 type :: process_t type
79 end type process_t
83 class(process_t), intent(inout), target :: process
89 class(process_t), intent(inout) :: process
99 use process, only: process_t
107 type(process_t), allocatable, target :: process
/dports/lang/gcc9/gcc-9.4.0/gcc/testsuite/gfortran.dg/
H A Dfinalize_33.f9071 public :: process_t
72 type :: process_t type
79 end type process_t
83 class(process_t), intent(inout), target :: process
89 class(process_t), intent(inout) :: process
99 use process, only: process_t
107 type(process_t), allocatable, target :: process

123456789