Searched refs:fork (Results 1 - 25 of 256) sorted by relevance

1234567891011

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/
H A D._stdsoap2.cpp1 Mac OS X  2��ATTRR�����com.apple.TextEncodingutf-8;134217984This resource fork intentionally left blank (…)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/bin/megatron/
H A Dmacbin.h13 ssize_t bin_read(int fork, char *buffer, size_t length);
14 ssize_t bin_write(int fork, char *buffer, size_t length);
H A Dnad.h14 ssize_t nad_read(int fork, char *forkbuf, size_t bufc);
15 ssize_t nad_write(int fork, char *forkbuf, size_t bufc);
H A Dmegatron.c60 static ssize_t from_read(int un, int fork, char *buf, size_t len) argument
66 return( hqx_read( fork, buf, len ));
69 return( bin_read( fork, buf, len ));
72 return( nad_read( fork, buf, len ));
76 return( single_read( fork, buf, len ));
126 static ssize_t to_write(int to, int fork, size_t bufc) argument
133 return( nad_write( fork, forkbuf, bufc ));
138 return( bin_write( fork, forkbuf, bufc ));
171 int fork; local
211 printf("fork lengt
[all...]
H A Dasingle.h15 ssize_t single_read(int fork, char *buffer, size_t length);
H A Dhqx.h14 ssize_t hqx_read(int fork, char *buffer, size_t length);
H A Dmacbin.c163 * bin_read is called until it returns zero for each fork. when it is
165 * of the next fork (if there is one ).
170 ssize_t bin_read( int fork, char *buffer, size_t length) argument
178 fprintf( stderr, "bin_read: fork is %s\n", forkname[ fork ] );
179 fprintf( stderr, "bin_read: remaining length is %d\n", bin.forklen[fork] );
182 if (bin.forklen[fork] > 0x7FFFFFFF) {
183 fprintf(stderr, "This should never happen, dude! fork length == %u\n", bin.forklen[fork]);
187 if ( bin.forklen[ fork ]
239 bin_write(int fork, char *buffer, size_t length) argument
[all...]
H A Dhqx.c169 * hqx_read is called until it returns zero for each fork. when it is
173 * times for the same fork. hqx_read must be called enough times to
177 ssize_t hqx_read(int fork, char *buffer, size_t length) argument
189 fprintf( stderr, "hqx_read: fork is %s\n", forkname[ fork ] );
190 fprintf( stderr, "hqx_read: remaining length is %d\n", hqx.forklen[fork] );
193 if (hqx.forklen[fork] > 0x7FFFFFFF) {
194 fprintf(stderr, "This should never happen, dude!, fork length == %u\n", hqx.forklen[fork]);
198 if ( hqx.forklen[ fork ]
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/
H A D._stdsoap2.cpp2 Mac OS X  2��ATTR_ ����com.apple.TextEncodingutf-8;134217984This resource fork intentionally left blank (…)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/util/
H A Dserver_child.c110 children->fork = (void *) calloc(nforks, sizeof(server_child_fork));
112 if (!children->fork) {
126 server_child_fork *fork; local
143 fork = (server_child_fork *) children->fork + forkid;
146 if (child = resolve_child(fork->table, pid))
157 hash_child(fork->table, child);
169 server_child_fork *fork; local
172 fork = (server_child_fork *) children->fork
200 server_child_fork *fork; local
226 server_child_fork *fork; local
271 server_child_fork *fork; local
322 server_child_fork *fork; local
371 server_child_fork *fork; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/util/
H A Dbuild-id.c40 struct thread *thread = perf_session__findnew(session, self->fork.tid);
42 dump_printf("(%d:%d):(%d:%d)\n", self->fork.pid, self->fork.tid,
43 self->fork.ppid, self->fork.ptid);
57 .fork = event__process_task,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/mtools-4.0.10/
H A Dprecmd.c34 switch((pid=fork())){
36 perror("Could not fork");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/lib/
H A Ddaemon.c33 pid = fork ();
35 /* In case of fork is error. */
38 perror ("fork");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/web/
H A Dstartstop.c33 if (fork()) {
53 if (fork()) {
73 if (fork()) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openvpn-2.3.1/src/compat/
H A Dcompat-daemon.c61 switch (fork()) {
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/archival/libunarchive/
H A Dopen_transformer.c24 pid = fork();
29 bb_perror_msg_and_die("fork failed");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/adouble/
H A Dad_lock.c120 * 1) fork is the only user of the lock
121 * 2) fork shares a read lock with another open fork
126 static void adf_unlock(struct ad_fd *ad, const int fork) argument
133 if (lock[i].user == fork) {
159 /* find a byte lock that overlaps off/len for a particular open fork */
161 const int fork, const int type,
171 (lock[i].user == fork) &&
181 /* search other fork lock lists */
183 const int fork, cons
160 adf_findlock(struct ad_fd *ad, const int fork, const int type, const off_t off, const off_t len) argument
182 adf_findxlock(struct ad_fd *ad, const int fork, const int type, const off_t off, const off_t len) argument
266 ad_fcntl_lock(struct adouble *ad, const u_int32_t eid, const int locktype, const off_t off, const off_t len, const int fork) argument
536 ad_fcntl_tmplock(struct adouble *ad, const u_int32_t eid, const int locktype, const off_t off, const off_t len, const int fork) argument
628 ad_fcntl_unlock(struct adouble *ad, const int fork) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/testsuite/nsswitch/
H A Dgetgrent_r.c59 if ((pid = fork()) == -1) {
60 printf("ERROR: unable to fork\n");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/include/atalk/
H A Dserver_child.h22 void *fork; member in struct:server_child
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna-1.1.5/
H A Dprocess.c96 pid_t pid = fork();
134 switch(fork())
136 /* fork error */
138 perror("fork()");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/etc/afpd/
H A DMakefile.am31 fork.c \
75 filedir.h fork.h icon.h mangle.h misc.h status.h switch.h \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/replace/test/
H A Dshared_mmap.c33 if (fork() == 0) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/
H A Dsock_exec.c105 if (fork() == 0) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/script/tests/
H A Dtimelimit.c74 child_pid = fork();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/tests/
H A Dfcntl_lock64.c39 if (!(pid=fork())) {

Completed in 135 milliseconds

1234567891011