Lines Matching full:pathname
76 int WRAP(open)(const char *pathname, int flags, ...)
83 ALOGV("%s(pathname:%p, flags:0x%x, ...) {", __func__,
84 pathname, flags);
98 fd = __open(pathname, native_flags, mode);
100 /* Can't print pathname as a string, might be bogus */
101 ALOGV("%s: fd = %d = __open(pathname:%p, native_flags:0x%x, mode:0x%x);", __func__,
102 fd, pathname, native_flags, mode);
117 int WRAP(openat)(int dirfd, const char *pathname, int flags, ...)
124 ALOGV("%s(dirfd:%d, pathname:0x%p, flags:0x%x, ...) {", __func__,
125 dirfd, pathname, flags);
139 fd = __openat(dirfd, pathname, native_flags, mode);
142 ALOGV("%s: fd = %d = __open(pathname:0x%p, native_flags:0x%x, mode:0x%d);", __func__,
143 fd, pathname, native_flags, mode);