Lines Matching defs:error

672  *	\return \c FSSH_B_OK, if everything went fine, an error code otherwise.
769 * \return \c FSSH_B_OK, if everything when fine, an error code otherwise.
926 * In case of error (e.g. the supplied node could not be found) the variables
927 * for storing the resolved mount and node ID remain untouched and an error
936 * - another error code, if something went wrong.
945 fssh_status_t error = get_vnode(mountID, nodeID, &node, false);
946 if (error != FSSH_B_OK)
947 return error;
1323 * \return \c FSSH_B_OK, if everything went fine, another error code otherwise.
1960 // error -- clean up the created sub vnodes
2604 * \return \c FSSH_B_OK if everything went fine, another error code otherwise.
2628 fssh_status_t error = path_to_dir_vnode(mutablePath, &dirNode, leaf, kernel);
2629 if (error != FSSH_B_OK) {
2630 TRACE(("vfs_normalize_path(): failed to get dir vnode: %s\n", strerror(error)));
2631 return error;
2638 error = vnode_path_to_vnode(dirNode, leaf, false, 0, &dirNode, NULL);
2639 if (error != FSSH_B_OK) {
2641 strerror(error)));
2642 return error;
2646 error = dir_vnode_to_path(dirNode, buffer, bufferSize);
2648 if (error < FSSH_B_OK) {
2649 TRACE(("vfs_normalize_path(): failed to get dir path: %s\n", strerror(error)));
2650 return error;
2926 fssh_panic("vfs_init: error creating vnode hash table\n");
2933 fssh_panic("vfs_init: error creating mounts hash table\n");
3160 // put only on error -- otherwise our reference was transferred to the FD
3444 fssh_status_t error = FS_CALL(vnode, read_dir,cookie,buffer,bufferSize,_count);
3445 if (error != FSSH_B_OK)
3446 return error;
3454 return error;
4652 // ToDo: why should we hide the error code from the file system here?
5168 * \return A FD referring to the newly opened node, or an error code,
5169 * if an error occurs.
5202 * \return The FD of the newly opened directory or an error code, if
5223 * \return A FD referring to the newly opened directory, or an error code,
5224 * if an error occurs.
5285 * error code otherwise.
5330 * \return The length of the link on success or an appropriate error code
5361 * error code otherwise.
5407 * error code otherwise.
5437 * error code otherwise.
5481 * error code otherwise.
5550 * another error code otherwise.