HomeSort by: relevance | last modified time | path
    Searched refs:fdto (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/libfdt/dist/
fdt_overlay.c 18 * @fdto: pointer to the device tree overlay blob
30 static uint32_t overlay_get_target_phandle(const void *fdto, int fragment)
35 val = fdt_getprop(fdto, fragment, "target", &len);
48 * @fdto: Device tree overlay blob
60 static int overlay_get_target(const void *fdt, const void *fdto,
68 phandle = overlay_get_target_phandle(fdto, fragment);
75 path = fdt_getprop(fdto, fragment, "target-path", &path_len);
145 * @fdto: Device tree overlay blob
158 static int overlay_adjust_node_phandles(void *fdto, int node,
164 ret = overlay_phandle_add_offset(fdto, node, "phandle", delta)
    [all...]
libfdt.h 2039 * @fdto: pointer to the device tree overlay blob
2065 int fdt_overlay_apply(void *fdt, void *fdto);
  /src/tests/lib/libc/sys/
t_ptrace_kill.c 57 child(int *fdto, int *fdfrom)
62 read(fdto[0], &q, 1);
65 read(fdto[0], &q, 1);
92 int fdto[2], fdfrom[2]; local in function:ATF_TC_BODY
97 SYSCALL(pipe(fdto), 0);
101 child(fdto, fdfrom);
112 SYSCALL(write(fdto[1], &p, 1), 1);
  /src/share/examples/refuse/fanoutfs/
fanoutfs.c 165 int fdto; local in function:copyfile
174 if ((fdto = open(to, O_WRONLY | O_CREAT | O_EXCL, st.st_mode & 07777)) < 0) {
180 if (write(fdto, buf, cc) != cc) {
185 if (fchown(fdto, st.st_uid, st.st_gid) < 0) {
190 (void) close(fdto);

Completed in 34 milliseconds