Lines Matching refs:mode
293 const char* mode = (const char*)jlong_to_ptr(modeAddress);
296 fp = fopen(path, mode);
322 jlong pathAddress, jint oflags, jint mode)
327 RESTARTABLE(open64(path, (int)oflags, (mode_t)mode), fd);
336 jlong pathAddress, jint oflags, jint mode)
346 RESTARTABLE((*my_openat64_func)(dfd, path, (int)oflags, (mode_t)mode), fd);
472 jlong pathAddress, jint mode)
477 RESTARTABLE(chmod(path, (mode_t)mode), err);
485 jint mode)
489 RESTARTABLE(fchmod((int)filedes, (mode_t)mode), err);
655 jlong pathAddress, jint mode)
660 if (mkdir(path, (mode_t)mode) == -1) {
875 jlong pathAddress, jint mode, jlong dev)
880 RESTARTABLE(mknod(path, (mode_t)mode, (dev_t)dev), err);