• Home
  • Raw
  • Download

Lines Matching defs:impl

36 #define SBUF_RAW_CAST(impl) (struct HdfSBufRaw *)(impl)  argument
46 static void SbufRawImplRecycle(struct HdfSBufImpl *impl) in SbufRawImplRecycle()
67 static bool SbufRawImplWriteRollback(struct HdfSBufImpl *impl, uint32_t size) in SbufRawImplWriteRollback()
84 static bool SbufRawImplReadRollback(struct HdfSBufImpl *impl, uint32_t size) in SbufRawImplReadRollback()
101 static const uint8_t *SbufRawImplGetData(const struct HdfSBufImpl *impl) in SbufRawImplGetData()
111 static void SbufRawImplSetDataSize(struct HdfSBufImpl *impl, size_t size) in SbufRawImplSetDataSize()
123 static void SbufRawImplFlush(struct HdfSBufImpl *impl) in SbufRawImplFlush()
132 static size_t SbufRawImplGetCapacity(const struct HdfSBufImpl *impl) in SbufRawImplGetCapacity()
138 static size_t SbufRawImplGetDataSize(const struct HdfSBufImpl *impl) in SbufRawImplGetDataSize()
183 static bool SbufRawImplWrite(struct HdfSBufImpl *impl, const uint8_t *data, uint32_t size) in SbufRawImplWrite()
223 static bool SbufRawImplRead(struct HdfSBufImpl *impl, uint8_t *data, uint32_t readSize) in SbufRawImplRead()
248 static bool SbufRawImplWriteUint64(struct HdfSBufImpl *impl, uint64_t value) in SbufRawImplWriteUint64()
253 static bool SbufRawImplWriteUint32(struct HdfSBufImpl *impl, uint32_t value) in SbufRawImplWriteUint32()
258 static bool SbufRawImplWriteUint16(struct HdfSBufImpl *impl, uint16_t value) in SbufRawImplWriteUint16()
263 static bool SbufRawImplWriteUint8(struct HdfSBufImpl *impl, uint8_t value) in SbufRawImplWriteUint8()
268 static bool SbufRawImplWriteInt64(struct HdfSBufImpl *impl, int64_t value) in SbufRawImplWriteInt64()
273 static bool SbufRawImplWriteInt32(struct HdfSBufImpl *impl, int32_t value) in SbufRawImplWriteInt32()
278 static bool SbufRawImplWriteInt16(struct HdfSBufImpl *impl, int16_t value) in SbufRawImplWriteInt16()
283 static bool SbufRawImplWriteInt8(struct HdfSBufImpl *impl, int8_t value) in SbufRawImplWriteInt8()
288 static bool SbufRawImplWriteBuffer(struct HdfSBufImpl *impl, const uint8_t *data, uint32_t writeSiz… in SbufRawImplWriteBuffer()
309 static bool SbufRawImplWriteString(struct HdfSBufImpl *impl, const char *value) in SbufRawImplWriteString()
319 static bool SbufRawImplReadUint64(struct HdfSBufImpl *impl, uint64_t *value) in SbufRawImplReadUint64()
324 static bool SbufRawImplReadUint32(struct HdfSBufImpl *impl, uint32_t *value) in SbufRawImplReadUint32()
329 static bool SbufRawImplReadUint16(struct HdfSBufImpl *impl, uint16_t *value) in SbufRawImplReadUint16()
334 static bool SbufRawImplReadUint8(struct HdfSBufImpl *impl, uint8_t *value) in SbufRawImplReadUint8()
339 static bool SbufRawImplReadInt64(struct HdfSBufImpl *impl, int64_t *value) in SbufRawImplReadInt64()
344 static bool SbufRawImplReadInt32(struct HdfSBufImpl *impl, int32_t *value) in SbufRawImplReadInt32()
349 static bool SbufRawImplReadInt16(struct HdfSBufImpl *impl, int16_t *value) in SbufRawImplReadInt16()
354 static bool SbufRawImplReadInt8(struct HdfSBufImpl *impl, int8_t *value) in SbufRawImplReadInt8()
359 static bool SbufRawImplReadBuffer(struct HdfSBufImpl *impl, const uint8_t **data, uint32_t *readSiz… in SbufRawImplReadBuffer()
391 static const char *SbufRawImplReadString(struct HdfSBufImpl *impl) in SbufRawImplReadString()
418 static struct HdfSBufImpl *SbufRawImplCopy(const struct HdfSBufImpl *impl) in SbufRawImplCopy()
441 static struct HdfSBufImpl *SbufRawImplMove(struct HdfSBufImpl *impl) in SbufRawImplMove()
466 static void SbufRawImplTransDataOwnership(struct HdfSBufImpl *impl) in SbufRawImplTransDataOwnership()