HomeSort by relevance Sort by last modified time
    Searched refs:fd (Results 51 - 75 of 9164) sorted by null

1 23 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/rx/
mvtachi.d 9 0: fd 17 00 mvtachi r0, a0
10 3: fd 17 0f mvtachi r15, a0
11 6: fd 17 00 mvtachi r0, a0
12 9: fd 17 0f mvtachi r15, a0
13 c: fd 17 80 mvtachi r0, a1
14 f: fd 17 8f mvtachi r15, a1
mvtaclo.d 9 0: fd 17 10 mvtaclo r0, a0
10 3: fd 17 1f mvtaclo r15, a0
11 6: fd 17 10 mvtaclo r0, a0
12 9: fd 17 1f mvtaclo r15, a0
13 c: fd 17 90 mvtaclo r0, a1
14 f: fd 17 9f mvtaclo r15, a1
racw.d 9 0: fd 18 00 racw #1, a0
10 3: fd 18 10 racw #2, a0
11 6: fd 18 00 racw #1, a0
12 9: fd 18 10 racw #2, a0
13 c: fd 18 80 racw #1, a1
14 f: fd 18 90 racw #2, a1
racl.d 9 0: fd 19 00 racl #1, a0
10 3: fd 19 10 racl #2, a0
11 6: fd 19 80 racl #1, a1
12 9: fd 19 90 racl #2, a1
rdacl.d 9 0: fd 19 40 rdacl #1, a0
10 3: fd 19 50 rdacl #2, a0
11 6: fd 19 c0 rdacl #1, a1
12 9: fd 19 d0 rdacl #2, a1
rdacw.d 9 0: fd 18 40 rdacw #1, a0
10 3: fd 18 50 rdacw #2, a0
11 6: fd 18 c0 rdacw #1, a1
12 9: fd 18 d0 rdacw #2, a1
  /external/wayland/src/
wayland-os.c 39 set_cloexec_or_close(int fd)
43 if (fd == -1)
46 flags = fcntl(fd, F_GETFD);
50 if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) == -1)
53 return fd;
56 close(fd);
63 int fd; local
65 fd = socket(domain, type | SOCK_CLOEXEC, protocol);
66 if (fd >= 0)
67 return fd;
96 int *fd; local
138 int fd; local
155 int fd; local
    [all...]
  /cts/hostsidetests/security/securityPatch/CVE-2017-6262/
poc.c 30 static int drm_version(int fd)
42 ret = ioctl(fd, DRM_IOCTL_VERSION, &ver);
50 static int nouveau_gem_ioctl_new(int fd)
60 ret = ioctl(fd, DRM_IOCTL_NOUVEAU_GEM_NEW, &new_arg);
68 static uint32_t get_gem_map_handle(int fd)
72 handle = nouveau_gem_ioctl_new(fd);
77 static void nouveau_gem_ioctl_map(int fd, uint32_t handle)
85 ret = ioctl(fd, DRM_IOCTL_NOUVEAU_GEM_MAP, &map_arg);
93 int fd; local
95 fd = open(DRMDEV_NAME, O_RDWR)
    [all...]
  /external/ltp/testcases/kernel/input/
input_helper.h 26 void send_rel_move(int fd, int x, int y);
27 void send_event(int fd, int event, int code, int value);
29 void create_device(int fd);
30 void setup_mouse_events(int fd);
31 void destroy_device(int fd);
34 int no_events_queued(int fd, int stray_sync_event);
  /external/mesa3d/src/loader/
pci_id_driver_map.c 24 int is_nouveau_vieux(int fd);
33 nouveau_chipset(int fd)
38 ret = drmCommandWriteRead(fd, DRM_NOUVEAU_GETPARAM, &gp, sizeof(gp));
46 is_nouveau_vieux(int fd)
48 int chipset = nouveau_chipset(fd);
55 int is_nouveau_vieux(int fd) { return 0; }
  /bionic/libc/bionic/
close.cpp 34 int close(int fd) {
35 int rc = ___close(fd);
37 // POSIX says that if close returns with EINTR, the fd must not be closed.
eventfd_read.cpp 32 int eventfd_read(int fd, eventfd_t* value) {
33 return (read(fd, value, sizeof(*value)) == sizeof(*value)) ? 0 : -1;
eventfd_write.cpp 32 int eventfd_write(int fd, eventfd_t value) {
33 return (write(fd, &value, sizeof(value)) == sizeof(value)) ? 0 : -1;
futimens.cpp 32 int futimens(int fd, const struct timespec times[2]) {
33 return utimensat(fd, NULL, times, 0);
isatty.c 34 isatty (int fd)
38 return tcgetattr (fd, &term) == 0;
  /bionic/libc/private/
FdPath.h 21 explicit FdPath(int fd) {
22 snprintf(buf, sizeof(buf), "/proc/self/fd/%d", fd);
  /external/mesa3d/src/gallium/winsys/vc4/drm/
vc4_drm_winsys.c 32 vc4_drm_screen_create(int fd)
34 return vc4_screen_create(fcntl(fd, F_DUPFD_CLOEXEC, 3));
  /external/swiftshader/third_party/subzero/wasm-tests/
hello-putchar.c 5 void write_int_(int fd, int n) {
7 write_int_(fd, n / 10);
11 write(fd, &c, 1);
15 void write_int(int fd, int n) {
17 write(fd, "0", 1);
20 write(fd, "-", 1);
21 write_int_(fd, -n);
23 write_int_(fd, n);
  /external/toybox/toys/other/
partprobe.c 22 static void do_partprobe(int fd, char *name)
24 if (ioctl(fd, BLKRRPART, 0)) perror_msg("ioctl failed");
  /external/valgrind/memcheck/tests/
erringfds.stdout.exp 0 fd = -1
  /hardware/intel/common/libva/va/drm/
va_drm_auth.h 33 va_drm_is_authenticated(int fd);
37 va_drm_authenticate(int fd, uint32_t magic);
  /libcore/ojluni/src/main/java/sun/nio/ch/
NativeDispatcher.java 38 abstract int read(FileDescriptor fd, long address, int len)
49 int pread(FileDescriptor fd, long address, int len, long position)
55 abstract long readv(FileDescriptor fd, long address, int len)
58 abstract int write(FileDescriptor fd, long address, int len)
61 int pwrite(FileDescriptor fd, long address, int len, long position)
67 abstract long writev(FileDescriptor fd, long address, int len)
70 abstract void close(FileDescriptor fd) throws IOException;
72 // Prepare the given fd for closing by duping it to a known internal fd
74 // (Solaris and Linux) to prevent fd recycling
    [all...]
  /system/core/libcutils/
load_file.cpp 28 int fd; local
31 fd = open(fn, O_RDONLY);
32 if(fd < 0) return 0;
34 sz = lseek(fd, 0, SEEK_END);
37 if(lseek(fd, 0, SEEK_SET) != 0) goto oops;
42 if(read(fd, data, sz) != sz) goto oops;
43 close(fd);
50 close(fd);
  /system/core/libsync/
sw_sync.h 30 int sw_sync_timeline_inc(int fd, unsigned count);
31 int sw_sync_fence_create(int fd, const char *name, unsigned value);
  /system/netd/libnetdutils/
Fd.cpp 17 #include "netdutils/Fd.h"
22 std::ostream& operator<<(std::ostream& os, const Fd& fd) {
23 return os << "Fd[" << fd.get() << "]";

Completed in 312 milliseconds

1 23 4 5 6 7 8 91011>>