Lines Matching refs:str_len
74 unsigned long str_len,
82 if (str_len > (FSMaxRequestBytes(svr) - SIZEOF(fsQueryXExtents8Req)))
88 req->num_ranges = (CARD32) str_len;
89 req->length += (CARD16) ((str_len + 3) >> 2);
90 _FSSend(svr, (char *) str, str_len);
122 unsigned long str_len,
131 if (str_len > ((FSMaxRequestBytes(svr) - SIZEOF(fsQueryXExtents16Req))
138 req->num_ranges = (CARD32) str_len;
139 req->length += (CARD16) (((str_len * SIZEOF(fsChar2b)) + 3) >> 2);
144 swapped_str = FSmallocarray(str_len, SIZEOF(fsChar2b_version1));
147 for (unsigned long i = 0; i < str_len; i++) {
151 _FSSend(svr, (char *)swapped_str, (str_len*SIZEOF(fsChar2b_version1)));
154 _FSSend(svr, (char *) str, (str_len * SIZEOF(fsChar2b)));