Home
last modified time | relevance | path

Searched refs:global_cache (Results 1 – 25 of 219) sorted by relevance

123456789

/dports/www/ilias/ILIAS-5.4.25/Services/GlobalCache/classes/
H A Dclass.ilGlobalCache.php84 protected $global_cache; variable in ilGlobalCache
150 $this->global_cache = $ilGlobalCacheService;
306 return $this->global_cache->isValid($key);
340 if (!$this->global_cache->isActive()) {
344 return $this->global_cache->exists($key);
360 $this->global_cache->setValid($key);
362 return $this->global_cache->set($key, $this->global_cache->serialize($value), $ttl);
375 $unserialized_return = $this->global_cache->unserialize($this->global_cache->get($key));
400 return $this->global_cache->delete($key);
410 if ($this->global_cache->isActive()) {
[all …]
/dports/www/ilias6/ILIAS-6.14/Services/GlobalCache/classes/
H A Dclass.ilGlobalCache.php84 protected $global_cache; variable in ilGlobalCache
150 $this->global_cache = $ilGlobalCacheService;
306 return $this->global_cache->isValid($key);
340 if (!$this->global_cache->isActive()) {
344 return $this->global_cache->exists($key);
360 $this->global_cache->setValid($key);
362 return $this->global_cache->set($key, $this->global_cache->serialize($value), $ttl);
375 $unserialized_return = $this->global_cache->unserialize($this->global_cache->get($key));
400 return $this->global_cache->delete($key);
410 if ($this->global_cache->isActive()) {
[all …]
/dports/www/ilias/ILIAS-5.4.25/Services/Language/classes/
H A Dclass.ilCachedLanguage.php12 protected $global_cache; variable in ilCachedLanguage
41 $this->global_cache = ilGlobalCache::getInstance(ilGlobalCache::COMP_CLNG);
56 return $this->global_cache->isActive();
62 if ($this->global_cache->isActive()) {
63 $translations = $this->global_cache->get('translations_' . $this->getLanguageKey());
74 if ($this->global_cache->isActive()) {
75 … $this->global_cache->set('translations_' . $this->getLanguageKey(), $this->getTranslations());
86 if ($this->global_cache->isActive()) {
87 $this->global_cache->delete('translations_' . $this->getLanguageKey());
129 if ($this->global_cache->isActive()) {
[all …]
/dports/www/ilias6/ILIAS-6.14/Services/Language/classes/
H A Dclass.ilCachedLanguage.php12 protected $global_cache; variable in ilCachedLanguage
41 $this->global_cache = ilGlobalCache::getInstance(ilGlobalCache::COMP_CLNG);
56 return $this->global_cache->isActive();
62 if ($this->global_cache->isActive()) {
63 $translations = $this->global_cache->get('translations_' . $this->getLanguageKey());
74 if ($this->global_cache->isActive()) {
75 … $this->global_cache->set('translations_' . $this->getLanguageKey(), $this->getTranslations());
86 if ($this->global_cache->isActive()) {
87 $this->global_cache->delete('translations_' . $this->getLanguageKey());
129 if ($this->global_cache->isActive()) {
[all …]
/dports/www/ilias/ILIAS-5.4.25/Services/Component/classes/
H A Dclass.ilComponent.php60 protected $global_cache; variable in ilComponent
64 $this->global_cache = ilCachedComponentData::getInstance();
66 $this->setId($this->global_cache->lookCompId($this->getComponentType(), $this->getName()));
236 $global_cache = ilCachedComponentData::getInstance();
238 return $global_cache->lookCompId($a_type, $a_name);
249 $global_cache = ilCachedComponentData::getInstance();
251 return $global_cache->lookupCompInfo($a_type, $a_name);
H A Dclass.ilCachedComponentData.php92 $this->global_cache = ilGlobalCache::getInstance(ilGlobalCache::COMP_COMPONENT);
431 $global_cache = ilGlobalCache::getInstance(ilGlobalCache::COMP_COMPONENT);
432 $cached_obj = $global_cache->get('ilCachedComponentData');
437 $global_cache->set('ilCachedComponentData', self::$instance);
/dports/www/ilias6/ILIAS-6.14/Services/Component/classes/
H A Dclass.ilComponent.php60 protected $global_cache; variable in ilComponent
64 $this->global_cache = ilCachedComponentData::getInstance();
66 $this->setId($this->global_cache->lookCompId($this->getComponentType(), $this->getName()));
236 $global_cache = ilCachedComponentData::getInstance();
238 return $global_cache->lookCompId($a_type, $a_name);
249 $global_cache = ilCachedComponentData::getInstance();
251 return $global_cache->lookupCompInfo($a_type, $a_name);
H A Dclass.ilCachedComponentData.php92 $this->global_cache = ilGlobalCache::getInstance(ilGlobalCache::COMP_COMPONENT);
431 $global_cache = ilGlobalCache::getInstance(ilGlobalCache::COMP_COMPONENT);
432 $cached_obj = $global_cache->get('ilCachedComponentData');
437 $global_cache->set('ilCachedComponentData', self::$instance);
/dports/www/ilias/ILIAS-5.4.25/Services/UICore/classes/
H A Dclass.ilCachedCtrl.php57 $global_cache = ilGlobalCache::getInstance(ilGlobalCache::COMP_ILCTRL);
58 $cached_obj = $global_cache->get('ilCachedCtrl');
63 $global_cache->set('ilCachedCtrl', self::$instance);
92 $this->global_cache = ilGlobalCache::getInstance(ilGlobalCache::COMP_ILCTRL);
100 $this->global_cache->set('ilCachedCtrl', $this);
/dports/www/ilias6/ILIAS-6.14/Services/UICore/classes/
H A Dclass.ilCachedCtrl.php57 $global_cache = ilGlobalCache::getInstance(ilGlobalCache::COMP_ILCTRL);
58 $cached_obj = $global_cache->get('ilCachedCtrl');
63 $global_cache->set('ilCachedCtrl', self::$instance);
92 $this->global_cache = ilGlobalCache::getInstance(ilGlobalCache::COMP_ILCTRL);
100 $this->global_cache->set('ilCachedCtrl', $this);
/dports/devel/libunwind/libunwind-1.5.0/src/mi/
H A DGset_cache_size.c58 if (log_size == as->global_cache.log_size) in unw_set_cache_size()
61 as->global_cache.log_size = log_size; in unw_set_cache_size()
70 return dwarf_flush_rs_cache(&as->global_cache); in unw_set_cache_size()
/dports/deskutils/coolreader/coolreader-cr3.2.55/crengine/src/private/
H A Dlvfontglyphcache.h65 LVLocalGlyphCacheHashTableStorage(LVFontGlobalGlyphCache *global_cache) : in LVLocalGlyphCacheHashTableStorage() argument
66 m_global_cache(global_cache), hashTable(GLYPHCACHE_TABLE_SZ) {} in LVLocalGlyphCacheHashTableStorage()
86 LVLocalGlyphCacheListStorage(LVFontGlobalGlyphCache *global_cache) : in LVLocalGlyphCacheListStorage() argument
87 m_global_cache(global_cache), head(), tail() {} in LVLocalGlyphCacheListStorage()
/dports/net/samba412/samba-4.12.15/lib/util/
H A Dmemcache.c28 static struct memcache *global_cache; variable
99 TALLOC_FREE(global_cache); in memcache_set_global()
100 global_cache = cache; in memcache_set_global()
165 cache = global_cache; in memcache_lookup()
254 cache = global_cache; in memcache_delete()
278 cache = global_cache; in memcache_add()
375 cache = global_cache; in memcache_add_talloc()
391 cache = global_cache; in memcache_flush()
/dports/devel/py-cffi/cffi-1.15.0/cffi/
H A Dmodel.py92 return global_cache(self, ffi, 'new_void_type')
175 return global_cache(self, ffi, 'new_primitive_type', self.name)
254 return global_cache(self, ffi, 'new_function_type',
274 return global_cache(self, ffi, 'new_pointer_type', BItem)
322 return global_cache(self, ffi, 'new_array_type', BPtrItem, self.length)
477 return global_cache(self, ffi, 'new_%s_type' % self.kind,
514 return global_cache(self, ffi, 'new_enum_type',
589 def global_cache(srctype, ffi, funcname, *args, **kwds): function
613 return global_cache('?', ffi, 'new_pointer_type', BType)
/dports/devel/py-cffi/stage/usr/local/lib/python3.8/site-packages/cffi/
H A Dmodel.py92 return global_cache(self, ffi, 'new_void_type')
175 return global_cache(self, ffi, 'new_primitive_type', self.name)
254 return global_cache(self, ffi, 'new_function_type',
274 return global_cache(self, ffi, 'new_pointer_type', BItem)
322 return global_cache(self, ffi, 'new_array_type', BPtrItem, self.length)
477 return global_cache(self, ffi, 'new_%s_type' % self.kind,
514 return global_cache(self, ffi, 'new_enum_type',
589 def global_cache(srctype, ffi, funcname, *args, **kwds): function
613 return global_cache('?', ffi, 'new_pointer_type', BType)
/dports/devel/py-cffi/cffi-1.15.0/build/lib.dragonfly-6.3-DEVELOPMENT-x86_64-3.8/cffi/
H A Dmodel.py92 return global_cache(self, ffi, 'new_void_type')
175 return global_cache(self, ffi, 'new_primitive_type', self.name)
254 return global_cache(self, ffi, 'new_function_type',
274 return global_cache(self, ffi, 'new_pointer_type', BItem)
322 return global_cache(self, ffi, 'new_array_type', BPtrItem, self.length)
477 return global_cache(self, ffi, 'new_%s_type' % self.kind,
514 return global_cache(self, ffi, 'new_enum_type',
589 def global_cache(srctype, ffi, funcname, *args, **kwds): function
613 return global_cache('?', ffi, 'new_pointer_type', BType)
/dports/deskutils/coolreader/coolreader-cr3.2.55/crengine/Tools/glyphcache_bench/
H A Dlvfontglyphcache_a.cpp26 global_cache->remove(ptr); in clear()
36 global_cache->refresh(ptr); in getByChar()
50 global_cache->refresh(ptr); in getByIndex()
60 global_cache->put(item); in put()
H A Dlvfontglyphcache_b.cpp37 global_cache->remove(pair->value); in clear()
52 global_cache->refresh(ptr); in getByChar()
67 global_cache->refresh(ptr); in getByIndex()
76 global_cache->put(item); in put()
H A Dlvfontglyphcache_b.h65 LVFontGlobalGlyphCacheB *global_cache;
69 : global_cache(globalCache), hashTable(hashTableSize) {} in LVFontLocalGlyphCacheB()
H A Dlvfontglyphcache_a.h62 LVFontGlobalGlyphCacheA *global_cache; variable
66 : head(NULL), tail(NULL), global_cache(globalCache) {} in LVFontLocalGlyphCacheA()
/dports/devel/android-tools-adb/platform_system_core-android-9.0.0_r3/liblog/
H A Dproperties.c117 static struct cache_char global_cache[2]; in __android_log_level() local
135 for (i = 0; i < (sizeof(global_cache) / sizeof(global_cache[0])); ++i) { in __android_log_level()
136 if (check_cache(&global_cache[i].cache)) { in __android_log_level()
219 for (i = 0; i < (sizeof(global_cache) / sizeof(global_cache[0])); ++i) { in __android_log_level()
220 struct cache_char* cache = &global_cache[i]; in __android_log_level()
/dports/devel/android-tools-fastboot/platform_system_core-platform-tools-29.0.5/liblog/
H A Dproperties.cpp118 static struct cache_char global_cache[2]; in __android_log_level() local
136 for (i = 0; i < (sizeof(global_cache) / sizeof(global_cache[0])); ++i) { in __android_log_level()
137 if (check_cache(&global_cache[i].cache)) { in __android_log_level()
220 for (i = 0; i < (sizeof(global_cache) / sizeof(global_cache[0])); ++i) { in __android_log_level()
221 struct cache_char* cache = &global_cache[i]; in __android_log_level()
/dports/www/ilias/ILIAS-5.4.25/Services/Object/classes/
H A Dclass.ilObjectDefinition.php72 $global_cache = ilCachedComponentData::getInstance();
73 foreach ($global_cache->getIlobjectDef() as $rec) {
104 $subobj = $global_cache->lookupSubObjForParent($defIds);
117 $this->obj_group = $global_cache->getIlObjectGroup();
121 $this->sub_types = $global_cache->getIlObjectSubType();
916 $global_cache = ilCachedComponentData::getInstance();
918 $recs = $global_cache->lookupGroupedRepObj($a_parent_obj_type);
/dports/www/ilias6/ILIAS-6.14/Services/Object/classes/
H A Dclass.ilObjectDefinition.php72 $global_cache = ilCachedComponentData::getInstance();
73 foreach ($global_cache->getIlobjectDef() as $rec) {
104 $subobj = $global_cache->lookupSubObjForParent($defIds);
117 $this->obj_group = $global_cache->getIlObjectGroup();
121 $this->sub_types = $global_cache->getIlObjectSubType();
916 $global_cache = ilCachedComponentData::getInstance();
918 $recs = $global_cache->lookupGroupedRepObj($a_parent_obj_type);
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/runtime/
H A Druntime-regexp.cc641 RegExpGlobalCache global_cache(regexp, subject, isolate); in StringReplaceGlobalRegExpWithString() local
644 int32_t* current_match = global_cache.FetchNext(); in StringReplaceGlobalRegExpWithString()
673 current_match = global_cache.FetchNext(); in StringReplaceGlobalRegExpWithString()
683 global_cache.LastSuccessfulMatch()); in StringReplaceGlobalRegExpWithString()
706 RegExpGlobalCache global_cache(regexp, subject, isolate); in StringReplaceGlobalRegExpWithEmptyString() local
709 int32_t* current_match = global_cache.FetchNext(); in StringReplaceGlobalRegExpWithEmptyString()
747 current_match = global_cache.FetchNext(); in StringReplaceGlobalRegExpWithEmptyString()
753 global_cache.LastSuccessfulMatch()); in StringReplaceGlobalRegExpWithEmptyString()
1131 RegExpGlobalCache global_cache(regexp, subject, isolate); in SearchRegExpMultiple() local
1153 int32_t* current_match = global_cache.FetchNext(); in SearchRegExpMultiple()
[all …]

123456789