Lines Matching defs:nbyte
1976 size_t nbyte, /* number of bytes to read */
1979 return (P->ops->p_pread(P, buf, nbyte, address));
1991 int nbyte;
2003 for (nbyte = STRSZ; nbyte == STRSZ && leng < size; addr += STRSZ) {
2004 if ((nbyte = P->ops->p_pread(P, string, STRSZ, addr)) <= 0) {
2008 if ((nbyte = strlen(string)) > 0) {
2009 if (leng + nbyte > size)
2010 nbyte = size - leng;
2011 (void) strncpy(buf + leng, string, nbyte);
2012 leng += nbyte;
2022 size_t nbyte, /* number of bytes to write */
2025 return (P->ops->p_pwrite(P, buf, nbyte, address));