Lines Matching defs:path
418 /* read cache dentry file at path and write them into filp */
420 const char *path, int path_len,
439 strncpy(req->path, path, path_len);
460 const char *path, const char *name,
464 int path_len = strlen(path);
484 strncpy(mkdir_req->path, path, path_len);
485 strncpy(mkdir_req->path + path_len + 1, name, name_len);
508 const char *path, const char *name,
513 int path_len = strlen(path);
534 strncpy(create_req->path, path, path_len);
535 strncpy(create_req->path + path_len + 1, name, name_len);
557 int hmdfs_client_start_rmdir(struct hmdfs_peer *con, const char *path,
561 int path_len = strlen(path);
579 strncpy(rmdir_req->path, path, path_len);
580 strncpy(rmdir_req->path + path_len + 1, name, name_len);
588 int hmdfs_client_start_unlink(struct hmdfs_peer *con, const char *path,
592 int path_len = strlen(path);
610 strncpy(unlink_req->path, path, path_len);
611 strncpy(unlink_req->path + path_len + 1, name, name_len);
650 strncpy(rename_req->path, old_path, old_path_len);
651 strncpy(rename_req->path + old_path_len + 1, new_path, new_path_len);
653 strncpy(rename_req->path + old_path_len + 1 + new_path_len + 1,
655 strncpy(rename_req->path + old_path_len + 1 + new_path_len + 1 +
780 int hmdfs_send_statfs(struct hmdfs_peer *con, const char *path,
784 int path_len = strlen(path);
799 strncpy(req->path, path, path_len);
1029 void hmdfs_send_drop_push(struct hmdfs_peer *con, const char *path)
1031 int path_len = strlen(path);
1045 strncpy(dp_req->path, path, path_len);