Searched refs:blobPtr (Results 1 – 2 of 2) sorted by relevance
86 if (!blobPtr || blobPtr->blobId != path) in stat()91 meta->size = blobPtr->buffer.size(); in stat()92 meta->blobState = blobPtr->state; in stat()108 if (blobPtr) in open()112 blobPtr = std::make_unique<SmbiosBlob>(session, path, flags); in open()126 if (!blobPtr || blobPtr->sessionId != session) in write()131 if (!(blobPtr->state & blobs::StateFlags::open_write)) in write()153 if (newBufferSize > blobPtr->buffer.size()) in write()155 blobPtr->buffer.resize(newBufferSize); in write()158 std::memcpy(blobPtr->buffer.data() + offset, data.data(), data.size()); in write()[all …]
74 std::unique_ptr<SmbiosBlob> blobPtr = nullptr; member in blobs::SmbiosBlobHandler