HomeSort by relevance Sort by last modified time
    Searched defs:ffd (Results 1 - 7 of 7) sorted by null

  /external/toybox/toys/other/
losetup.c 64 int lfd = -1, ffd = ffd; local
67 // Open file (ffd) and loop device (lfd)
69 if (file) ffd = xopen(file, TT.openflags);
112 if (ioctl(lfd, LOOP_SET_FD, ffd)) perror_exit("%s=%s", device, file);
130 if (file) close(ffd);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Typeface_Delegate.java 96 FontFamily_Delegate ffd = mFontFamilies[i]; local
97 if (ffd != null && ffd.isValid()) {
98 Font font = ffd.getFont(weight, isItalic);
100 FontVariant ffdVariant = ffd.getVariant();
116 if (variant == ffd.getVariant()) {
  /bootable/recovery/
fuse_sideload.cpp 75 int ffd; // file descriptor for the fuse socket member in struct:fuse_data
113 res = writev(fd->ffd, vec, 2);
359 if (writev(fd->ffd, vec, vec_used) < 0) {
422 fd.ffd = open("/dev/fuse", O_RDWR);
423 if (fd.ffd < 0) {
433 fd.ffd, fd.uid, fd.gid, block_size);
443 ssize_t len = TEMP_FAILURE_RETRY(read(fd.ffd, request_buffer, sizeof(request_buffer)));
507 TEMP_FAILURE_RETRY(write(fd.ffd, &outhdr, sizeof(outhdr)));
519 if (fd.ffd) close(fd.ffd);
    [all...]
  /hardware/libhardware/tests/hwc/
cnativewindow.c 53 int ffd; member in struct:CNativeBuffer
131 static int cnw_dequeue_buffer1(aWindow *base, aBuffer **buf, int *ffd) {
141 *ffd = cnb->ffd;
143 cnb->ffd = -1;
144 LOG("<< dequeue buffer %p %d\n", *buf, *ffd);
154 static void set_layer(hwc_layer_1_t *dl, aBuffer *buf, int ffd) {
176 dl->acquireFenceFd = ffd;
180 static void hwc_post(CNativeWindow *win, aBuffer *buf, int ffd) {
195 set_layer(&dl[0], buf, ffd);
264 int ffd = -1; local
    [all...]
  /external/autotest/client/tests/kvm/deps/
rss.cpp 725 WIN32_FIND_DATA ffd; local
727 HANDLE hFind = FindFirstFile(pattern, &ffd);
741 if (ffd.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT)
743 if (ffd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
745 if (!strcmp(ffd.cFileName, ".") || !strcmp(ffd.cFileName, ".."))
747 PathAppend(path, ffd.cFileName);
755 if (!SendPacket(ci->socket, ffd.cFileName,
756 strlen(ffd.cFileName))) {
774 PathAppend(path, ffd.cFileName)
    [all...]
  /external/iproute2/tc/
tc_bpf.c 797 int ret, cfd, ofd, ffd; local
825 ffd = open(object, O_RDONLY);
826 if (ffd < 0) {
829 ret = ffd;
833 ret = fstat(ffd, &stbuff);
840 size = sendfile(ofd, ffd, NULL, stbuff.st_size);
857 close(ffd);
    [all...]
  /external/toybox/generated/
globals.h 1244 int file_no, ffd, *files; member in struct:tail_data

Completed in 430 milliseconds