Home
last modified time | relevance | path

Searched refs:CacheReader (Results 1 – 25 of 31) sorted by relevance

12

/dports/graphics/blender/blender-2.91.0/source/blender/io/alembic/
H A DABC_alembic.h26 struct CacheReader;
106 void ABC_get_transform(struct CacheReader *reader,
112 struct Mesh *ABC_read_mesh(struct CacheReader *reader,
119 bool ABC_mesh_topology_changed(struct CacheReader *reader,
125 void CacheReader_incref(struct CacheReader *reader);
126 void CacheReader_free(struct CacheReader *reader);
128 struct CacheReader *CacheReader_open_alembic_object(struct AbcArchiveHandle *handle,
129 struct CacheReader *reader,
133 bool ABC_has_vec3_array_property_named(struct CacheReader *reader, const char *name);
136 int ABC_read_velocity_cache(struct CacheReader *reader,
/dports/sysutils/qdirstat/qdirstat-1.8/src/
H A DDirTreeCache.cpp207 CacheReader::CacheReader( const QString & fileName, in CacheReader() function in CacheReader
239 CacheReader::~CacheReader() in ~CacheReader()
257 void CacheReader::rewind() in rewind()
267 bool CacheReader::read( int maxLines ) in read()
284 void CacheReader::addItem() in addItem()
509 bool CacheReader::eof() in eof()
518 QString CacheReader::firstDir() in firstDir()
542 bool CacheReader::checkHeader() in checkHeader()
590 bool CacheReader::readLine() in readLine()
629 void CacheReader::splitLine() in splitLine()
[all …]
H A DDirTreeCache.h90 class CacheReader: public QObject
100 CacheReader( const QString & fileName,
107 virtual ~CacheReader();
H A DDirReadJob.h26 class CacheReader; variable
357 CacheReader * reader );
384 CacheReader * reader() const { return _reader; } in reader()
395 CacheReader * _reader;
H A DDirReadJob.cpp639 CacheReader * reader ) in CacheReadJob()
655 _reader = new CacheReader( cacheFileName, tree, parent ); in CacheReadJob()
/dports/sysutils/khelpcenter/khelpcenter-21.12.3/searchhandlers/
H A Dcachereader.cpp35 CacheReader::CacheReader() in CacheReader() function in CacheReader
39 CacheReader::~CacheReader() in ~CacheReader()
43 bool CacheReader::parse( const QString& file ) in parse()
91 QSet<QString> CacheReader::documents() const in documents()
96 QByteArray CacheReader::document( const QString& id ) const in document()
H A Dcachereader.h16 class CacheReader
19 CacheReader();
20 ~CacheReader();
/dports/benchmarks/polygraph/polygraph-4.13.0/src/cache/
H A DDistrPoint.h14 class CacheReader; variable
35 const CacheReader *reader() const { return theReader; } in reader()
38 void addReader(CacheReader *r);
40 void delReader(CacheReader *r);
75 CacheReader *theReader; // XXX: only one reader is supported!
H A DCache.h38 class CacheReader: public CacheUser {
77 DistrPoint *addReader(const ObjId &id, CacheReader *r);
H A DDistrPoint.cc30 void DistrPoint::addReader(CacheReader *r) { in addReader()
45 void DistrPoint::delReader(CacheReader *r) { in delReader()
H A DCache.cc131 DistrPoint *Cache::addReader(const ObjId &id, CacheReader *r) { in addReader()
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/djherbis/fscache/
H A Dfscache.go74 next() (*CacheReader, error)
282 func (f *reloadedFile) next() (*CacheReader, error) {
287 return &CacheReader{
297 func (f *cachedFile) next() (*CacheReader, error) {
303 return &CacheReader{
319 type CacheReader struct { struct
325 func (r *CacheReader) Close() error { argument
334 func (r *CacheReader) Size() (int64, bool, error) { argument
H A Dfscache_test.go231 cr, ok := r.(*CacheReader)
451 cr, ok := r.(*CacheReader)
/dports/graphics/blender/blender-2.91.0/source/blender/blenkernel/
H A DBKE_cachefile.h31 struct CacheReader;
58 struct CacheReader **reader,
61 void BKE_cachefile_reader_free(struct CacheFile *cache_file, struct CacheReader **reader);
/dports/sysutils/istio/istio-1.6.7/vendor/sigs.k8s.io/controller-runtime/pkg/client/
H A Dsplit.go41 CacheReader Reader member
51 return d.CacheReader.Get(ctx, key, obj)
60 return d.CacheReader.List(ctx, list, opts...)
/dports/sysutils/istio/istio-1.6.7/vendor/sigs.k8s.io/service-apis/vendor/sigs.k8s.io/controller-runtime/pkg/client/
H A Dsplit.go41 CacheReader Reader member
51 return d.CacheReader.Get(ctx, key, obj)
60 return d.CacheReader.List(ctx, list, opts...)
/dports/sysutils/istio/istio-1.6.7/vendor/sigs.k8s.io/controller-runtime/pkg/cache/internal/
H A Dcache_reader.go36 var _ client.Reader = &CacheReader{}
39 type CacheReader struct { struct
48 func (c *CacheReader) Get(_ context.Context, key client.ObjectKey, out runtime.Object) error { argument
90 func (c *CacheReader) List(_ context.Context, out runtime.Object, opts ...client.ListOption) error { argument
H A Dinformers_map.go72 Reader CacheReader
216 Reader: CacheReader{indexer: ni.GetIndexer(), groupVersionKind: gvk},
/dports/sysutils/istio/istio-1.6.7/vendor/sigs.k8s.io/service-apis/vendor/sigs.k8s.io/controller-runtime/pkg/cache/internal/
H A Dcache_reader.go36 var _ client.Reader = &CacheReader{}
39 type CacheReader struct { struct
48 func (c *CacheReader) Get(_ context.Context, key client.ObjectKey, out runtime.Object) error { argument
90 func (c *CacheReader) List(_ context.Context, out runtime.Object, opts ...client.ListOption) error { argument
H A Dinformers_map.go68 Reader CacheReader
196 Reader: CacheReader{indexer: ni.GetIndexer(), groupVersionKind: gvk},
/dports/graphics/blender/blender-2.91.0/source/blender/io/alembic/intern/
H A Dalembic_capi.cc726 void ABC_get_transform(CacheReader *reader, float r_mat_world[4][4], float time, float scale) in ABC_get_transform()
758 static AbcObjectReader *get_abc_reader(CacheReader *reader, Object *ob, const char **err_str) in get_abc_reader()
784 Mesh *ABC_read_mesh(CacheReader *reader, in ABC_read_mesh()
801 CacheReader *reader, Object *ob, Mesh *existing_mesh, const float time, const char **err_str) in ABC_mesh_topology_changed()
814 void CacheReader_free(CacheReader *reader) in CacheReader_free()
824 void CacheReader_incref(CacheReader *reader) in CacheReader_incref()
830 CacheReader *CacheReader_open_alembic_object(AbcArchiveHandle *handle, in CacheReader_open_alembic_object()
831 CacheReader *reader, in CacheReader_open_alembic_object()
861 return reinterpret_cast<CacheReader *>(abc_reader); in CacheReader_open_alembic_object()
883 bool ABC_has_vec3_array_property_named(struct CacheReader *reader, const char *name) in ABC_has_vec3_array_property_named()
[all …]
H A Dabc_util.h30 struct CacheReader { struct
/dports/graphics/blender/blender-2.91.0/source/blender/blenkernel/intern/
H A Dcachefile.c159 struct CacheReader **reader, in BKE_cachefile_reader_open()
192 void BKE_cachefile_reader_free(CacheFile *cache_file, struct CacheReader **reader) in BKE_cachefile_reader_free()
224 struct CacheReader **reader = BLI_gsetIterator_getKey(&gs_iter); in cachefile_handle_free()
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/VideoCommon/
H A DShaderCache.cpp216 class CacheReader : public LinearDiskCacheReader<K, u8> in LoadShaderCache() class
219 CacheReader(T& cache_) : cache(cache_) {} in LoadShaderCache() function in VideoCommon::ShaderCache::LoadShaderCache::CacheReader
250 CacheReader reader(cache); in LoadShaderCache()
267 class CacheReader : public LinearDiskCacheReader<DiskKeyType, u8> in LoadPipelineCache() class
270 CacheReader(ShaderCache* this_ptr_, T& cache_) : this_ptr(this_ptr_), cache(cache_) {} in LoadPipelineCache() function in VideoCommon::ShaderCache::LoadPipelineCache::CacheReader
305 CacheReader reader(this, cache); in LoadPipelineCache()
/dports/multimedia/navidrome/navidrome-0.40.0/core/cache/
H A Dfile_caches.go149 cr, ok := r.(*fscache.CacheReader)

12