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

  /external/toybox/toys/other/
losetup.c 71 int i, cfd = open("/dev/loop-control", O_RDWR); local
77 if (cfd != -1) {
78 if (0 <= (i = ioctl(cfd, 0x4C82))) // LOOP_CTL_GET_FREE
80 close(cfd);
  /external/avahi/avahi-daemon/
simple-protocol.c 439 int cfd; local
441 if ((cfd = accept(fd, NULL, NULL)) < 0)
444 client_new(s, cfd);
  /external/toybox/toys/posix/
cp.c 145 int fdout = -1, cfd = try->parent ? try->parent->extra : AT_FDCWD, local
166 || (!fstatat(cfd, catch, &cst, 0) && cst.st_dev == try->st.st_dev
177 if (!faccessat(cfd, catch, F_OK, 0) && !S_ISDIR(cst.st_mode)) {
184 } else if ((flags & FLAG_F) && unlinkat(cfd, catch, 0)) {
225 if (!mkdirat(cfd, catch, try->st.st_mode | 0200) || errno == EEXIST)
226 if (-1 != (try->extra = openat(cfd, catch, O_NOFOLLOW)))
234 if (!linkat(tfd, try->name, cfd, catch, 0)) err = 0;
257 if (!symlinkat(s, cfd, catch)) {
272 sizeof(toybuf) > i && !symlinkat(toybuf, cfd, catch))
273 : !mknodat(cfd, catch, try->st.st_mode, try->st.st_rdev)
    [all...]
  /external/opencv3/modules/calib3d/src/
rho.cpp 201 * @param [in] cfd The required confidence in the solution.
221 double cfd, /* Works: 0.995 */
258 double cfd; member in struct:cv::RHO_HEST_REFC::__anon20596
350 double cfd, /* Works: 0.995 */
508 * @param [in] cfd The required confidence in the solution.
529 double cfd, /* Works: 0.995 */
535 return p->rhoHest(src, dst, inl, N, maxD, maxI, rConvg, cfd, minInl, beta,
696 * @param [in] cfd The required confidence in the solution.
716 double cfd, /* Works: 0.995 */
734 arg.cfd = cfd
    [all...]
  /external/valgrind/coregrind/m_syswrap/
syswrap-linux.c 6477 struct vki_consolefontdesc *cfd = (struct vki_consolefontdesc *)ARG3; local
6486 struct vki_consolefontdesc *cfd = (struct vki_consolefontdesc *)ARG3; local
    [all...]
  /frameworks/native/cmds/dumpstate/
utils.cpp 1074 int cfd = TEMP_FAILURE_RETRY(open(path, O_RDONLY | O_CLOEXEC)); local
    [all...]
  /external/iproute2/tc/
tc_bpf.c 797 int ret, cfd, ofd, ffd; local
804 cfd = socket(AF_ALG, SOCK_SEQPACKET, 0);
805 if (cfd < 0) {
808 return cfd;
811 ret = bind(cfd, (struct sockaddr *)&alg, sizeof(alg));
817 ofd = accept(cfd, NULL, 0);
861 close(cfd);
    [all...]

Completed in 346 milliseconds