Searched refs:fdp (Results 1 - 21 of 21) sorted by relevance

/external/elfutils/libdwfl/
H A Dopen.c116 __libdw_open_file (int *fdp, Elf **elfp, bool close_on_fail, bool archive_ok) argument
120 Elf *elf = elf_begin (*fdp, ELF_C_READ_MMAP_PRIVATE, NULL);
123 Dwfl_Error error = what_kind (*fdp, &elf, &kind, &close_fd);
130 error = __libdw_image_header (*fdp, &offset,
152 error = what_kind (*fdp, &elf, &kind, &close_fd);
170 close (*fdp);
171 *fdp = -1;
H A DlibdwflP.h623 extern Dwfl_Error __libdw_open_file (int *fdp, Elf **elfp,
/external/curl/docs/examples/
H A Danyauthput.c81 int *fdp = (int *)userp; local
82 int fd = *fdp;
107 int *fdp = (int *)stream; local
108 int fd = *fdp;
H A Dhiperfifo.c253 SockInfo *fdp = calloc(sizeof(SockInfo), 1); local
255 fdp->global = g;
256 setsock(fdp, s, easy, action, g);
257 curl_multi_assign(g->multi, s, fdp);
264 SockInfo *fdp = (SockInfo*) sockp; local
271 remsock(fdp);
274 if(!fdp) {
281 whatstr[fdp->action], whatstr[what]);
282 setsock(fdp, s, e, what, g);
H A Dghiper.c226 SockInfo *fdp = g_malloc0(sizeof(SockInfo)); local
228 fdp->global = g;
229 fdp->ch=g_io_channel_unix_new(s);
230 setsock(fdp, s, easy, action, g);
231 curl_multi_assign(g->multi, s, fdp);
238 SockInfo *fdp = (SockInfo*) sockp; local
244 remsock(fdp);
247 if(!fdp) {
255 "Changing action from %d to %d\n", fdp->action, what);
256 setsock(fdp,
[all...]
H A Devhiperfifo.c268 SockInfo *fdp = calloc(sizeof(SockInfo), 1); local
270 fdp->global = g;
271 setsock(fdp, s, easy, action, g);
272 curl_multi_assign(g->multi, s, fdp);
282 SockInfo *fdp = (SockInfo*) sockp; local
289 remsock(fdp, g);
292 if(!fdp) {
299 whatstr[fdp->action], whatstr[what]);
300 setsock(fdp, s, e, what, g);
H A Dasiohiper.cpp224 static void setsock(int *fdp, curl_socket_t s, CURL*e, int act, GlobalInfo*g) argument
226 fprintf(MSG_OUT, "\nsetsock: socket=%d, act=%d, fdp=%p", s, act, fdp);
239 *fdp = act;
269 /* fdp is used to store current action */
270 int *fdp = (int *) calloc(sizeof(int), 1); local
272 setsock(fdp, s, easy, action, g);
273 curl_multi_assign(g->multi, s, fdp);
/external/dhcpcd-6.8.2/
H A Dcontrol.c76 struct fd_data *fdp; local
78 while ((fdp = TAILQ_FIRST(&fd->queue))) {
79 TAILQ_REMOVE(&fd->queue, fdp, next);
80 if (fdp->freeit)
81 control_queue_purge(fd->ctx, fdp->data);
82 free(fdp);
84 while ((fdp = TAILQ_FIRST(&fd->free_queue))) {
85 TAILQ_REMOVE(&fd->free_queue, fdp, next);
86 free(fdp);
/external/openssh/
H A Dauthfd.h26 int ssh_get_authentication_socket(int *fdp);
H A Dauthfd.c88 ssh_get_authentication_socket(int *fdp) argument
94 if (fdp != NULL)
95 *fdp = -1;
116 if (fdp != NULL)
117 *fdp = sock;
H A Dchannels.c382 channel_close_fd(int *fdp) argument
384 int ret = 0, fd = *fdp;
388 *fdp = -1;
/external/protobuf/src/google/protobuf/compiler/csharp/
H A Dcsharp_helpers.cc447 FileDescriptorProto fdp; local
448 descriptor->CopyTo(&fdp);
449 fdp.SerializeToString(&fdp_bytes);
/external/strace/tests/
H A Dmsg_control.c73 int *fdp = (int *) CMSG_DATA(cmsg); local
84 printf("%d", fdp[i]);
213 int *fdp = (int *) CMSG_DATA(cmsg); local
216 fdp[i] = i;
/external/strace/tests-m32/
H A Dmsg_control.c73 int *fdp = (int *) CMSG_DATA(cmsg); local
84 printf("%d", fdp[i]);
213 int *fdp = (int *) CMSG_DATA(cmsg); local
216 fdp[i] = i;
/external/strace/tests-mx32/
H A Dmsg_control.c73 int *fdp = (int *) CMSG_DATA(cmsg); local
84 printf("%d", fdp[i]);
213 int *fdp = (int *) CMSG_DATA(cmsg); local
216 fdp[i] = i;
/external/elfutils/src/
H A Delfcmp.c42 static Elf *open_file (const char *fname, int *fdp, Ebl **eblp);
728 open_file (const char *fname, int *fdp, Ebl **eblp) argument
743 *fdp = fd;
/external/protobuf/src/google/protobuf/compiler/python/
H A Dpython_generator.cc320 FileDescriptorProto fdp; local
321 file_->CopyTo(&fdp);
322 fdp.SerializeToString(&file_descriptor_serialized_);
/external/blktrace/
H A Dblktrace.c1027 int cpu, *fdp; local
1029 for (cpu = 0, fdp = cl_fds; cpu < ncpus; cpu++, fdp++) {
1030 if (*fdp >= 0) {
1031 net_send_drops(*fdp);
1032 net_close_connection(fdp);
/external/protobuf/python/google/protobuf/internal/
H A Dreflection_test.py1052 fdp = descriptor_pb2.FieldDescriptorProto
1053 AddDescriptorField(desc_proto, 'name', fdp.TYPE_STRING)
1054 AddDescriptorField(desc_proto, 'year', fdp.TYPE_INT64)
1055 AddDescriptorField(desc_proto, 'automatic', fdp.TYPE_BOOL)
1056 AddDescriptorField(desc_proto, 'price', fdp.TYPE_DOUBLE)
1061 new_field.type = fdp.TYPE_STRING
/external/swiftshader/third_party/LLVM/
H A Dconfigure6255 # Extract the first word of "fdp", so it can be a program name with args.
6256 set dummy fdp; ac_word=$2
6282 test -z "$ac_cv_path_FDP" && ac_cv_path_FDP="echo fdp"
6296 if test "$FDP" != "echo fdp" ; then
/external/compiler-rt/test/builtins/Unit/ppc/
H A Dfloatditf_test.h[all...]

Completed in 777 milliseconds