HomeSort by relevance Sort by last modified time
    Searched full:fdp (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/pdfium/xfa/src/
foxitlib.h 13 #include "xfa/src/fdp/include/fde.h"
  /external/pdfium/
xfa.gyp 99 "xfa/src/fdp/include/fde.h",
100 "xfa/src/fdp/include/fde_brs.h",
101 "xfa/src/fdp/include/fde_css.h",
102 "xfa/src/fdp/include/fde_img.h",
103 "xfa/src/fdp/include/fde_mem.h",
104 "xfa/src/fdp/include/fde_pen.h",
105 "xfa/src/fdp/include/fde_psr.h",
106 "xfa/src/fdp/include/fde_pth.h",
107 "xfa/src/fdp/include/fde_rdr.h",
108 "xfa/src/fdp/include/fde_rdv.h"
    [all...]
BUILD.gn 852 "xfa/src/fdp/include/fde.h",
853 "xfa/src/fdp/include/fde_brs.h",
854 "xfa/src/fdp/include/fde_css.h",
855 "xfa/src/fdp/include/fde_img.h",
856 "xfa/src/fdp/include/fde_mem.h",
857 "xfa/src/fdp/include/fde_pen.h",
858 "xfa/src/fdp/include/fde_psr.h",
859 "xfa/src/fdp/include/fde_pth.h",
860 "xfa/src/fdp/include/fde_rdr.h",
861 "xfa/src/fdp/include/fde_rdv.h"
    [all...]
  /external/elfutils/libdwfl/
open.c 116 __libdw_open_file (int *fdp, Elf **elfp, bool close_on_fail, bool archive_ok)
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;
libdwflP.h 619 /* Open Elf handle on *FDP. This handles decompression and checks
621 Returns DWFL_E_NOERROR and sets *ELFP on success, resets *FDP to -1 if
622 it's no longer used. Resets *FDP on failure too iff CLOSE_ON_FAIL. */
623 extern Dwfl_Error __libdw_open_file (int *fdp, Elf **elfp,
  /external/curl/docs/examples/
ghiper.c 239 SockInfo *fdp = g_malloc0(sizeof(SockInfo)); local
241 fdp->global = g;
242 fdp->ch=g_io_channel_unix_new(s);
243 setsock(fdp, s, easy, action, g);
244 curl_multi_assign(g->multi, s, fdp);
253 SockInfo *fdp = (SockInfo*) sockp; local
259 remsock(fdp);
261 if (!fdp) {
269 "Changing action from %d to %d\n", fdp->action, what);
270 setsock(fdp, s, e, what, g)
    [all...]
hiperfifo.c 249 SockInfo *fdp = calloc(sizeof(SockInfo), 1); local
251 fdp->global = g;
252 setsock(fdp, s, easy, action, g);
253 curl_multi_assign(g->multi, s, fdp);
260 SockInfo *fdp = (SockInfo*) sockp; local
267 remsock(fdp);
270 if (!fdp) {
277 whatstr[fdp->action], whatstr[what]);
278 setsock(fdp, s, e, what, g);
evhiperfifo.c 253 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);
267 SockInfo *fdp = (SockInfo*) sockp; local
275 remsock(fdp, g);
278 if ( !fdp )
286 whatstr[fdp->action], whatstr[what]);
287 setsock(fdp, s, e, what, g);
asiohiper.cpp 223 static void setsock(int *fdp, curl_socket_t s, CURL*e, int act, GlobalInfo*g)
225 fprintf(MSG_OUT, "\nsetsock: socket=%d, act=%d, fdp=%p", s, act, fdp);
238 *fdp = act;
268 /* fdp is used to store current action */
269 int *fdp = (int *) calloc(sizeof(int), 1); local
271 setsock(fdp, s, easy, action, g);
272 curl_multi_assign(g->multi, s, fdp);
  /external/dhcpcd-6.8.2/
control.c 76 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);
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vdprintf.c 46 int *fdp = cookie; local
47 return (write(*fdp, buf, n));
  /external/libxml2/test/valid/
index.xml 39 <HeadLine>Berliner SPD f?hrt Gespr?che mit FDP und Gr?nen</HeadLine>
105 <HeadLine>Rexrodt - das Stehaufm?nnchen der Berliner FDP</HeadLine>
  /external/llvm/device/include/llvm/Config/
llvm-config.h 65 /* Define to path to fdp program if found or 'echo fdp' otherwise */
  /external/llvm/host/include/llvm/Config/
llvm-config.h 77 /* Define to path to fdp program if found or 'echo fdp' otherwise */
  /external/dbus/dbus/
dbus-sysdeps-win.c 953 DBusPollFD *fdp = &fds[i]; local
956 if (fdp->events & _DBUS_POLLIN)
957 msgp += sprintf (msgp, "R:%d ", fdp->fd);
959 if (fdp->events & _DBUS_POLLOUT)
960 msgp += sprintf (msgp, "W:%d ", fdp->fd);
962 msgp += sprintf (msgp, "E:%d\n\t", fdp->fd);
977 DBusPollFD *fdp = &fds[i]; local
983 if (fdp->events & _DBUS_POLLIN)
986 if (fdp->events & _DBUS_POLLOUT)
989 WSAEventSelect(fdp->fd, ev, lNetworkEvents)
1016 DBusPollFD *fdp = &fds[i]; local
    [all...]
dbus-sysdeps-unix.c     [all...]
  /prebuilts/go/darwin-x86/src/syscall/
fs_nacl.go 644 fdp, felem, err := fs.namei(from, true)
648 fde, _, err := fs.dirlookup(fdp, felem)
658 *fde = fdp.dir[len(fdp.dir)-1]
659 fdp.dir = fdp.dir[:len(fdp.dir)-1]
660 fdp.dirSize()
zsysnum_openbsd_arm.go 108 SYS_PIPE2 = 101 // { int sys_pipe2(int *fdp, int flags); }
170 SYS_PIPE = 263 // { int sys_pipe(int *fdp); }
  /prebuilts/go/linux-x86/src/syscall/
fs_nacl.go 644 fdp, felem, err := fs.namei(from, true)
648 fde, _, err := fs.dirlookup(fdp, felem)
658 *fde = fdp.dir[len(fdp.dir)-1]
659 fdp.dir = fdp.dir[:len(fdp.dir)-1]
660 fdp.dirSize()
zsysnum_openbsd_arm.go 108 SYS_PIPE2 = 101 // { int sys_pipe2(int *fdp, int flags); }
170 SYS_PIPE = 263 // { int sys_pipe(int *fdp); }
  /external/llvm/lib/Support/
GraphWriter.cpp 123 case GraphProgram::FDP:
124 return "fdp";
218 S.TryFindProgram("dot|fdp|neato|twopi|circo", GeneratorPath))) {
  /external/valgrind/memcheck/tests/ppc32/
power_ISA2_05.c 70 ** The [st|l]fdp[x] instructions were put into the "Floating-Point.Phased-Out"
  /external/valgrind/memcheck/tests/ppc64/
power_ISA2_05.c 74 ** The [st|l]fdp[x] instructions were put into the "Floating-Point.Phased-Out"
  /external/elfutils/src/
elfcmp.c 42 static Elf *open_file (const char *fname, int *fdp, Ebl **eblp);
728 open_file (const char *fname, int *fdp, Ebl **eblp)
743 *fdp = fd;
  /external/blktrace/
blktrace.c 1027 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);
    [all...]

Completed in 7396 milliseconds

1 2 3