Home
last modified time | relevance | path

Searched refs:kFuseMaxRead (Results 1 – 4 of 4) sorted by relevance

/aosp12/system/core/libappfuse/include/libappfuse/
H A DFuseBuffer.h29 constexpr size_t kFuseMaxRead = 128 * 1024; variable
96 using FuseResponse = FuseResponseBase<kFuseMaxRead>;
/aosp12/system/core/libappfuse/
H A DFuseAppLoop.cc68 if (buffer->request.read_in.size > kFuseMaxRead) { in HandleRead()
193 CHECK(size <= kFuseMaxRead); in ReplyRead()
H A DFuseBuffer.cc264 template struct FuseResponseBase<kFuseMaxRead>;
/aosp12/frameworks/base/core/jni/
H A Dcom_android_internal_os_FuseAppLoop.cpp85 CHECK_LE(size, static_cast<uint32_t>(fuse::kFuseMaxRead)); in OnRead()