Lines Matching refs:path

97  *   path - The path to the vnode to create
107 * EINVAL - 'path' is invalid for this operation
108 * EEXIST - An vnode already exists at 'path'
113 * The parameter path must point a valid string, which end with the terminating null byte.
114 * The total length of parameter path must less than the value defined by PATH_MAX.
115 * The prefix of the parameter path must be /dev/.
120 int register_driver(const char *path,
132 * The parameter path must point a valid string, which end with the terminating null byte.
133 * The length of parameter path must be less than the value defined by PATH_MAX.
134 * The prefix of the parameter path must be '/dev/'.
138 * path - The path to the vnode to create
148 * EINVAL - 'path' is invalid for this operation
149 * EEXIST - An vnode already exists at 'path'
154 int register_blockdriver(const char *path,
162 * Remove the character driver vnode at 'path' from the pseudo-file system
170 * ENOENT - 'path' is invalid for this operation.
174 * The parameter path must point a valid string, which end with the terminating null byte.
175 * The total length of parameter path must less than the value defined by PATH_MAX.
176 * The block device node referred by parameter path must be really exist.
179 int unregister_driver(const char *path);
185 * Remove the block driver vnode at 'path' from the pseudo-file system
188 * path - The path that the vnode to be destroyed.
196 * ENOENT - 'path' is invalid for this operation.
200 * The parameter path must point a valid string, which end with the terminating null byte.
201 * The total length of parameter path must less than the value defined by PATH_MAX.
202 * The block device node referred by parameter path must be really exist.
206 int unregister_blockdriver(const char *path);
216 * pathname - the full path to the block driver to be opened
231 * The parameter path must point a valid string, which end with the terminating null byte.
232 * The total length of parameter path must less than the value defined by PATH_MAX.
253 * pathname - The full path to the block driver to be located