Lines Matching defs:in
5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
45 LOG(ERROR) << "Invalid header length is found in " << name << ": " << header.len;
127 LOG(ERROR) << "Written bytes " << result << " is different from length in header "
212 const fuse_init_in* const in = &request.init_in;
214 // Before writing |out|, we need to copy data from |in|.
216 const uint32_t minor = in->minor;
217 const uint32_t max_readahead = in->max_readahead;
221 // 7.22. Beginning with 7.23, the structure increased in size and added
223 if (in->major != FUSE_KERNEL_VERSION || in->minor < 6) {
224 LOG(ERROR) << "Fuse kernel version mismatch: Kernel version " << in->major
225 << "." << in->minor << " Expected at least " << FUSE_KERNEL_VERSION