OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:file_actions
(Results
1 - 18
of
18
) sorted by null
/external/bison/lib/
spawn_faction_init.c
32
__posix_spawn_file_actions_realloc (posix_spawn_file_actions_t *
file_actions
)
34
int newalloc =
file_actions
->_allocated + 8;
35
void *newmem = realloc (
file_actions
->_actions,
42
file_actions
->_actions = (struct __spawn_action *) newmem;
43
file_actions
->_allocated = newalloc;
51
posix_spawn_file_actions_init (posix_spawn_file_actions_t *
file_actions
)
54
memset (
file_actions
, '\0', sizeof (*
file_actions
));
spawn_faction_addclose.c
36
posix_spawn_file_actions_addclose (posix_spawn_file_actions_t *
file_actions
,
47
return posix_spawn_file_actions_addclose (
file_actions
, fd);
50
if (
file_actions
->_used ==
file_actions
->_allocated
51
&& __posix_spawn_file_actions_realloc (
file_actions
) != 0)
59
rec = &
file_actions
->_actions[
file_actions
->_used];
64
++
file_actions
->_used;
spawn_faction_adddup2.c
36
posix_spawn_file_actions_adddup2 (posix_spawn_file_actions_t *
file_actions
,
47
return posix_spawn_file_actions_adddup2 (
file_actions
, fd, newfd);
50
if (
file_actions
->_used ==
file_actions
->_allocated
51
&& __posix_spawn_file_actions_realloc (
file_actions
) != 0)
59
rec = &
file_actions
->_actions[
file_actions
->_used];
65
++
file_actions
->_used;
spawn_faction_addopen.c
36
posix_spawn_file_actions_addopen (posix_spawn_file_actions_t *
file_actions
,
48
return posix_spawn_file_actions_addopen (
file_actions
, fd, path, oflag, mode);
51
if (
file_actions
->_used ==
file_actions
->_allocated
52
&& __posix_spawn_file_actions_realloc (
file_actions
) != 0)
60
rec = &
file_actions
->_actions[
file_actions
->_used];
68
++
file_actions
->_used;
spawn_faction_destroy.c
26
posix_spawn_file_actions_destroy (posix_spawn_file_actions_t *
file_actions
)
29
free (
file_actions
->_actions);
spawn_int.h
54
file_actions
);
60
const posix_spawn_file_actions_t *
file_actions
,
spawnp.c
28
const posix_spawn_file_actions_t *
file_actions
,
32
return __spawni (pid, file,
file_actions
, attrp, argv, envp, 1);
spawni.c
97
const posix_spawn_file_actions_t *
file_actions
,
140
const posix_spawn_file_actions_t *
file_actions
,
166
&&
file_actions
== NULL))
238
if (
file_actions
!= NULL)
242
for (cnt = 0; cnt <
file_actions
->_used; ++cnt)
244
struct __spawn_action *action = &
file_actions
->_actions[cnt];
/external/valgrind/none/tests/solaris/
posix_spawn.c
14
posix_spawn_file_actions_t
file_actions
;
local
18
err = posix_spawn_file_actions_init(&
file_actions
);
25
err = posix_spawn_file_actions_adddup2(&
file_actions
, 3, 4);
34
err = posix_spawn(NULL, "/bin/true", &
file_actions
, NULL, argv_exe,
45
err = posix_spawn_file_actions_destroy(&
file_actions
);
/external/dhcpcd-6.8.2/compat/
posix_spawn.c
85
const posix_spawn_file_actions_t *
file_actions
,
95
if (
file_actions
== NULL && is_vfork_safe(flags))
/external/valgrind/docs/internals/
Darwin-notes.txt
70
also ignores the
file_actions
argument
/prebuilts/go/darwin-x86/src/syscall/
zsysnum_netbsd_386.go
270
SYS_POSIX_SPAWN = 474 // { int|sys||posix_spawn(pid_t *pid, const char *path, const struct posix_spawn_file_actions *
file_actions
, const struct posix_spawnattr *attrp, char *const *argv, char *const *envp); }
zsysnum_netbsd_amd64.go
270
SYS_POSIX_SPAWN = 474 // { int|sys||posix_spawn(pid_t *pid, const char *path, const struct posix_spawn_file_actions *
file_actions
, const struct posix_spawnattr *attrp, char *const *argv, char *const *envp); }
zsysnum_netbsd_arm.go
270
SYS_POSIX_SPAWN = 474 // { int|sys||posix_spawn(pid_t *pid, const char *path, const struct posix_spawn_file_actions *
file_actions
, const struct posix_spawnattr *attrp, char *const *argv, char *const *envp); }
/prebuilts/go/linux-x86/src/syscall/
zsysnum_netbsd_386.go
270
SYS_POSIX_SPAWN = 474 // { int|sys||posix_spawn(pid_t *pid, const char *path, const struct posix_spawn_file_actions *
file_actions
, const struct posix_spawnattr *attrp, char *const *argv, char *const *envp); }
zsysnum_netbsd_amd64.go
270
SYS_POSIX_SPAWN = 474 // { int|sys||posix_spawn(pid_t *pid, const char *path, const struct posix_spawn_file_actions *
file_actions
, const struct posix_spawnattr *attrp, char *const *argv, char *const *envp); }
zsysnum_netbsd_arm.go
270
SYS_POSIX_SPAWN = 474 // { int|sys||posix_spawn(pid_t *pid, const char *path, const struct posix_spawn_file_actions *
file_actions
, const struct posix_spawnattr *attrp, char *const *argv, char *const *envp); }
/external/valgrind/coregrind/m_syswrap/
syswrap-darwin.c
[
all
...]
Completed in 1246 milliseconds