Lines Matching refs:pathname
346 const char *pathname,
354 ret = open(pathname, O_CREAT | O_WRONLY, defmode);
358 "Failed to open file '%s'", pathname);
362 "Invalid open(%s) return value %d", pathname, ret);
370 "Failed to close file '%s'", pathname);
374 "Invalid close('%s') return value %d", pathname, ret);
379 ret = chmod(pathname, mode);
383 "Failed to chmod file '%s'", pathname);
388 pathname, ret);
395 ret = utimensat(AT_FDCWD, pathname, times, 0);
398 ret = utimes(pathname, NULL);
403 ret = stat(pathname, &sb);
407 "Failed to stat file '%s'", pathname);
412 pathname, ret);
435 ret = utimes(pathname, cotimes);
441 pathname);
449 pathname, ret);