Searched refs:ENAMETOOLONG (Results 1 - 25 of 35) sorted by relevance

12

/darwin-on-arm/xnu/bsd/dev/i386/
H A Dstubs.c58 * maxlen bytes are copied, return ENAMETOOLONG,
72 error = ENAMETOOLONG;
88 * maxlen bytes are copied, return ENAMETOOLONG,
110 return ENAMETOOLONG;
/darwin-on-arm/xnu/bsd/sys/
H A Derrno.h178 #define ENAMETOOLONG 63 /* File name too long */ macro
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_utfconv.c255 * ENAMETOOLONG: Name didn't fit; only buflen bytes were encoded
311 result = ENAMETOOLONG;
318 result = ENAMETOOLONG;
342 result = ENAMETOOLONG;
357 result = ENAMETOOLONG;
365 result = ENAMETOOLONG;
406 * ENAMETOOLONG: Name didn't fit; only ucslen chars were decoded.
619 result = ENAMETOOLONG;
727 * ENAMETOOLONG: output did not fit or input exceeded MAXPATHLEN bytes
761 result = ENAMETOOLONG;
[all...]
H A Dvfs_lookup.c148 * ENAMETOOLONG Filename too long
150 * copyinstr:ENAMETOOLONG Filename too long
243 if (error == ENAMETOOLONG && !(cnp->cn_flags & HASBUF)) {
278 * We only error out on the ENAMETOOLONG cases where we know that
285 if (realpath_err == ENOSPC || realpath_err == ENAMETOOLONG){
286 error = ENAMETOOLONG;
1343 return ENAMETOOLONG;
1715 error = ENAMETOOLONG;
/darwin-on-arm/xnu/osfmk/x86_64/
H A Dlocore.s249 movl $(ENAMETOOLONG),%eax /* buffer full, no \0: ENAMETOOLONG */
H A Dcopyio.c180 * or ENAMETOOLONG... but not EFAULT
207 error = ENAMETOOLONG;
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_lookup.c247 * ENAMETOOLONG supersedes other errors
250 * the ENAMETOOLONG will be handled in the next VNOP.
252 if ((retval != ENAMETOOLONG) &&
255 retval = ENAMETOOLONG;
H A Dhfs_encodings.c263 if (error == ENAMETOOLONG)
304 if (error == ENAMETOOLONG)
602 result = ENAMETOOLONG; /* ran out of room! */
H A Dhfs_catalog.c2958 if (result == ENAMETOOLONG) {
3631 if (result != ENAMETOOLONG)
3654 if (res != ENAMETOOLONG)
3954 if (result == ENAMETOOLONG) {
/darwin-on-arm/xnu/osfmk/i386/
H A Dcopyio.c317 * or ENAMETOOLONG... but not EFAULT
323 * if we still have room, then the ENAMETOOLONG
327 if (error == ENAMETOOLONG && nbytes > cnt)
353 error = ENAMETOOLONG;
H A Dlocore.s267 movl $(ENAMETOOLONG),%eax /* buffer full but no 0-byte: ENAMETOOLONG */
/darwin-on-arm/xnu/bsd/kern/
H A Dbsd_stubs.c332 * Returns: 0 for success, ENAMETOOLONG for insufficient buffer space.
347 return ENAMETOOLONG;
H A Dsubr_sbuf.c374 case ENAMETOOLONG:
H A Dposix_sem.c395 error = ENAMETOOLONG;
683 error = ENAMETOOLONG;
H A Dposix_shm.c408 error = ENAMETOOLONG;
1028 error = ENAMETOOLONG;
H A Dkern_newsysctl.c982 * ENAMETOOLONG Input length too long
1017 return (ENAMETOOLONG);
H A Duipc_syscalls.c226 * getsockaddr:ENAMETOOLONG Filename too long
563 * getsockaddr:ENAMETOOLONG Filename too long
777 * getsockaddr:ENAMETOOLONG Filename too long
1893 * ENAMETOOLONG Filename too long
1906 return (ENAMETOOLONG);
1951 return (ENAMETOOLONG);
H A Dkern_prot.c1978 } else if (error == ENAMETOOLONG)
/darwin-on-arm/xnu/osfmk/arm/
H A Dbcopyinout.s42 #define ENAMETOOLONG 0x3f define
910 moveq r0, #ENAMETOOLONG
922 movne r0, #ENAMETOOLONG
944 moveq r0, #ENAMETOOLONG
964 movne r0, #ENAMETOOLONG
985 moveq r0, #ENAMETOOLONG
1005 movne r0, #ENAMETOOLONG
/darwin-on-arm/xnu/bsd/hfs/hfscommon/Catalog/
H A DCatalogUtilities.c258 if (err == ENAMETOOLONG)
/darwin-on-arm/xnu/bsd/security/audit/
H A Daudit_bsm_errno.c336 { BSM_ERRNO_ENAMETOOLONG, ENAMETOOLONG, ES("File name too long") },
/darwin-on-arm/xnu/bsd/miscfs/devfs/
H A Ddevfs_tree.c305 return ENAMETOOLONG;
393 return (ENAMETOOLONG);
H A Ddevfs_vnops.c871 error = ENAMETOOLONG;
960 error = ENAMETOOLONG;
/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs_vnops.c2110 error = ENAMETOOLONG;
3359 return (ENAMETOOLONG);
3498 return (ENAMETOOLONG);
3854 return (ENAMETOOLONG);
4088 return (ENAMETOOLONG);
4169 return (ENAMETOOLONG);
4273 return (ENAMETOOLONG);
4426 return (ENAMETOOLONG);
4571 return (ENAMETOOLONG);
5830 return (ENAMETOOLONG);
[all...]
/darwin-on-arm/xnu/bsd/dev/dtrace/
H A Ddtrace_glue.c1230 * ENAMETOOLONG is returned when 'len' bytes have been copied in but the NUL terminator was
1232 * Note that we do *not* stuff a NUL terminator when returning ENAMETOOLONG, that's left
1235 if (error && error != ENAMETOOLONG) {
1267 * ENAMETOOLONG is returned when 'len' bytes have been copied out but the NUL terminator was
1269 * Note that we do *not* stuff a NUL terminator when returning ENAMETOOLONG, that's left

Completed in 140 milliseconds

12