Home
last modified time | relevance | path

Searched refs:LoadState (Results 1 – 25 of 1118) sorted by relevance

12345678910>>...45

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.DirectoryServices.AccountManagement/src/System/DirectoryServices/AccountManagement/
H A DAccountInfo.cs24 private LoadState _accountLockoutTimeLoaded = LoadState.NotSet;
36 private LoadState _lastLogonLoaded = LoadState.NotSet;
48 private LoadState _permittedWorkstationsLoaded = LoadState.NotSet;
69 private LoadState _permittedLogonTimesLoaded = LoadState.NotSet;
103 private LoadState _expirationDateChanged = LoadState.NotSet;
166 private LoadState _badLogonCountChanged = LoadState.NotSet;
178 private LoadState _homeDirectoryChanged = LoadState.NotSet;
199 private LoadState _homeDriveChanged = LoadState.NotSet;
220 private LoadState _scriptPathChanged = LoadState.NotSet;
462 …_homeDriveChanged = (_homeDriveChanged == LoadState.Changed) ? LoadState.Loaded : LoadState.NotSet; in ResetAllChangeStatus()
[all …]
H A DPasswordInfo.cs23 private LoadState _lastPasswordSetLoaded = LoadState.NotSet;
35 private LoadState _lastBadPasswordAttemptLoaded = LoadState.NotSet;
47 private LoadState _passwordNotRequiredChanged = LoadState.NotSet;
65 private LoadState _passwordNeverExpiresChanged = LoadState.NotSet;
83 private LoadState _cannotChangePasswordChanged = LoadState.NotSet;
113 private LoadState _allowReversiblePasswordEncryptionChanged = LoadState.NotSet;
253 _lastPasswordSetLoaded = LoadState.Loaded; in LoadValueIntoProperty()
358 …otRequiredChanged = (_passwordNotRequiredChanged == LoadState.Changed) ? LoadState.Loaded : LoadSt… in ResetAllChangeStatus()
359 …erExpiresChanged = (_passwordNeverExpiresChanged == LoadState.Changed) ? LoadState.Loaded : LoadSt… in ResetAllChangeStatus()
360 …ePasswordChanged = (_cannotChangePasswordChanged == LoadState.Changed) ? LoadState.Loaded : LoadSt… in ResetAllChangeStatus()
[all …]
H A DUser.cs47 private LoadState _givenNameChanged = LoadState.NotSet; // change-tracking
68 private LoadState _middleNameChanged = LoadState.NotSet; // change-tracking
89 private LoadState _surnameChanged = LoadState.NotSet; // change-tracking
110 private LoadState _emailAddressChanged = LoadState.NotSet; // change-tracking
152 private LoadState _employeeIDChanged = LoadState.NotSet; // change-tracking
447 …_givenNameChanged = (_givenNameChanged == LoadState.Changed) ? LoadState.Loaded : LoadState.NotSet… in ResetAllChangeStatus()
448 …_middleNameChanged = (_middleNameChanged == LoadState.Changed) ? LoadState.Loaded : LoadState.NotS… in ResetAllChangeStatus()
449 … _surnameChanged = (_surnameChanged == LoadState.Changed) ? LoadState.Loaded : LoadState.NotSet; ; in ResetAllChangeStatus()
450 …_emailAddressChanged = (_emailAddressChanged == LoadState.Changed) ? LoadState.Loaded : LoadState.… in ResetAllChangeStatus()
451 …oneNumberChanged = (_voiceTelephoneNumberChanged == LoadState.Changed) ? LoadState.Loaded : LoadSt… in ResetAllChangeStatus()
[all …]
H A DPrincipal.cs164 private LoadState _sidChanged = LoadState.NotSet;
179 private LoadState _guidChanged = LoadState.NotSet;
193 private LoadState _distinguishedNameChanged = LoadState.NotSet;
221 private LoadState _nameChanged = LoadState.NotSet;
619 private LoadState _extensionCacheChanged = LoadState.NotSet;
1265 …_displayNameChanged = (_displayNameChanged == LoadState.Changed) ? LoadState.Loaded : LoadState.No… in ResetAllChangeStatus()
1266 …_descriptionChanged = (_descriptionChanged == LoadState.Changed) ? LoadState.Loaded : LoadState.No… in ResetAllChangeStatus()
1267 … _samNameChanged = (_samNameChanged == LoadState.Changed) ? LoadState.Loaded : LoadState.NotSet; in ResetAllChangeStatus()
1269 _sidChanged = (_sidChanged == LoadState.Changed) ? LoadState.Loaded : LoadState.NotSet; in ResetAllChangeStatus()
1270 … _guidChanged = (_guidChanged == LoadState.Changed) ? LoadState.Loaded : LoadState.NotSet; in ResetAllChangeStatus()
[all …]
H A DGroup.cs44 private LoadState _isSecurityGroupChanged = LoadState.NotSet; // change-tracking
59 if (this.unpersisted && (_isSecurityGroupChanged != LoadState.Changed))
89 private LoadState _groupScopeChanged = LoadState.NotSet; // change-tracking
104 if (this.unpersisted && (_groupScopeChanged != LoadState.Changed))
266 _isSecurityGroupChanged = LoadState.Loaded; in LoadValueIntoProperty()
271 _groupScopeChanged = LoadState.Loaded; in LoadValueIntoProperty()
296 return _isSecurityGroupChanged == LoadState.Changed; in GetChangeStatusForProperty()
299 return _groupScopeChanged == LoadState.Changed; in GetChangeStatusForProperty()
342 …_groupScopeChanged = (_groupScopeChanged == LoadState.Changed) ? LoadState.Loaded : LoadState.NotS… in ResetAllChangeStatus()
343 …sSecurityGroupChanged = (_isSecurityGroupChanged == LoadState.Changed) ? LoadState.Loaded : LoadSt… in ResetAllChangeStatus()
/dports/graphics/jogamp-jogl/gluegen/src/java/com/jogamp/common/util/cache/
H A DTempJarCache.java55 public enum LoadState { enum in TempJarCache
58 public boolean compliesWith(final LoadState o2) { in compliesWith()
62 private static boolean testLoadState(final LoadState has, final LoadState exp) { in testLoadState()
70 private static Map<Uri, LoadState> nativeLibJars;
71 private static Map<Uri, LoadState> classFileJars;
72 private static Map<Uri, LoadState> resourceFileJars;
226 nativeLibJars.put(jarUri, LoadState.LOOKED_UP); in addNativeLibs()
233 nativeLibJars.put(jarUri, LoadState.LOADED); in addNativeLibs()
261 classFileJars.put(jarUri, LoadState.LOOKED_UP); in addClasses()
269 classFileJars.put(jarUri, LoadState.LOADED); in addClasses()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/cronet/android/java/src/org/chromium/net/impl/
H A DUrlRequestBase.java74 assert loadState >= LoadState.IDLE && loadState <= LoadState.READING_RESPONSE; in convertLoadState()
76 case (LoadState.IDLE): in convertLoadState()
85 case (LoadState.WAITING_FOR_DELEGATE): in convertLoadState()
88 case (LoadState.WAITING_FOR_CACHE): in convertLoadState()
91 case (LoadState.DOWNLOADING_PAC_FILE): in convertLoadState()
103 case (LoadState.RESOLVING_HOST): in convertLoadState()
106 case (LoadState.CONNECTING): in convertLoadState()
109 case (LoadState.SSL_HANDSHAKE): in convertLoadState()
112 case (LoadState.SENDING_REQUEST): in convertLoadState()
115 case (LoadState.WAITING_FOR_RESPONSE): in convertLoadState()
[all …]
/dports/devel/corrade/corrade-2020.06/src/Corrade/PluginManager/Test/
H A DManagerTest.cpp468 CORRADE_COMPARE(manager.unload("Canary"), LoadState::Static); in staticPlugin()
476 CORRADE_COMPARE(manager.load("Dog"), LoadState::Loaded); in dynamicPlugin()
477 CORRADE_COMPARE(manager.loadState("Dog"), LoadState::Loaded); in dynamicPlugin()
490 CORRADE_COMPARE(manager.unload("Dog"), LoadState::Used); in dynamicPlugin()
534 CORRADE_COMPARE(manager.load("Dog"), LoadState::Loaded); in dynamicPluginFilePathConflictsWithLoadedPlugin()
684 CORRADE_COMPARE(manager.load("PitBull"), LoadState::Loaded); in hierarchy()
827 CORRADE_COMPARE(manager.load("PitBull"), LoadState::Loaded); in reloadPluginDirectory()
941 CORRADE_COMPARE(manager.unload("Dog"), LoadState::Used); in dynamicProvides()
1045 CORRADE_COMPARE(manager.load("Dog"), LoadState::Loaded); in utf8Path()
1179 Debug(&o) << LoadState::Static << LoadState(0x3f); in debugLoadState()
[all …]
/dports/devel/corrade/corrade-2020.06/src/Corrade/PluginManager/
H A DAbstractManager.cpp76 LoadState loadState;
368 CORRADE_ASSERT(after & (LoadState::Static|LoadState::NotLoaded|LoadState::WrongMetadataFile), in unloadRecursiveInternal()
389 if(ait->second.loadState & (LoadState::NotLoaded|LoadState::WrongMetadataFile)) in setPluginDirectory()
397 if(it->second->loadState & (LoadState::NotLoaded|LoadState::WrongMetadataFile)) in setPluginDirectory()
567 if(!(plugin.loadState & (LoadState::Static|LoadState::Loaded))) in loadInternal()
817 …CORRADE_INTERNAL_ASSERT(plugin.loadState & (LoadState::Static|LoadState::NotLoaded|LoadState::Wron… in unloadInternal()
1044 LoadState::NotFound, in operator <<()
1051 LoadState::Loaded, in operator <<()
1054 LoadState::Required, in operator <<()
1056 LoadState::Static, in operator <<()
[all …]
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qmldesigner/assetexporterplugin/
H A Dassetexporterview.cpp60 if (loadingState() == LoadState::Busy) in loadQmlFile()
63 setState(LoadState::Busy); in loadQmlFile()
85 setState(LoadState::QmlErrorState); in modelAttached()
93 if (inErrorState() || loadingState() == LoadState::Loaded) in instanceInformationsChanged()
114 return m_state == LoadState::Exausted || m_state == LoadState::QmlErrorState; in inErrorState()
122 void AssetExporterView::setState(AssetExporterView::LoadState state) in setState()
127 if (inErrorState() || m_state == LoadState::Loaded) { in setState()
132 if (m_state == LoadState::Loaded) in setState()
143 setState(LoadState::Loaded); in handleMaybeDone()
148 if (!inErrorState() && loadingState() != LoadState::Loaded) in handleTimerTimeout()
[all …]
/dports/games/blinkensisters/blinkensisters/lostpixels/game/software/BlinkenLUA/LuaMain/source/
H A Dlundump.cpp27 } LoadState; typedef
29 static void unexpectedEOZ (LoadState* S) in unexpectedEOZ()
34 static int ezgetc (LoadState* S) in ezgetc()
76 static int LoadInt (LoadState* S) in LoadInt()
84 static size_t LoadSize (LoadState* S) in LoadSize()
91 static lua_Number LoadNumber (LoadState* S) in LoadNumber()
98 static TString* LoadString (LoadState* S) in LoadString()
207 static void LoadSignature (LoadState* S) in LoadSignature()
226 static void LoadHeader (LoadState* S) in LoadHeader()
254 static Proto* LoadChunk (LoadState* S) in LoadChunk()
[all …]
/dports/graphics/darktable38/darktable-3.8.0/src/external/lua/src/
H A Dlundump.c37 } LoadState; typedef
40 static l_noret error (LoadState *S, const char *why) { in error()
61 static lu_byte loadByte (LoadState *S) { in loadByte()
83 static size_t loadSize (LoadState *S) { in loadSize()
88 static int loadInt (LoadState *S) { in loadInt()
93 static lua_Number loadNumber (LoadState *S) { in loadNumber()
100 static lua_Integer loadInteger (LoadState *S) { in loadInteger()
144 static void loadCode (LoadState *S, Proto *f) { in loadCode()
227 static void loadDebug (LoadState *S, Proto *f) { in loadDebug()
290 static void checkHeader (LoadState *S) { in checkHeader()
[all …]
/dports/audio/moony-lv2/moony-0.36.0/lua-5.4.2/
H A Dlundump.c37 } LoadState; typedef
40 static l_noret error (LoadState *S, const char *why) { in error()
61 static lu_byte loadByte (LoadState *S) { in loadByte()
83 static size_t loadSize (LoadState *S) { in loadSize()
88 static int loadInt (LoadState *S) { in loadInt()
93 static lua_Number loadNumber (LoadState *S) { in loadNumber()
100 static lua_Integer loadInteger (LoadState *S) { in loadInteger()
144 static void loadCode (LoadState *S, Proto *f) { in loadCode()
227 static void loadDebug (LoadState *S, Proto *f) { in loadDebug()
290 static void checkHeader (LoadState *S) { in checkHeader()
[all …]
/dports/lang/lua54/lua-5.4.2/src/
H A Dlundump.c37 } LoadState; typedef
40 static l_noret error (LoadState *S, const char *why) { in error()
61 static lu_byte loadByte (LoadState *S) { in loadByte()
83 static size_t loadSize (LoadState *S) { in loadSize()
88 static int loadInt (LoadState *S) { in loadInt()
93 static lua_Number loadNumber (LoadState *S) { in loadNumber()
100 static lua_Integer loadInteger (LoadState *S) { in loadInteger()
144 static void loadCode (LoadState *S, Proto *f) { in loadCode()
227 static void loadDebug (LoadState *S, Proto *f) { in loadDebug()
290 static void checkHeader (LoadState *S) { in checkHeader()
[all …]
/dports/misc/xplr/xplr-0.17.0/cargo-crates/lua-src-543.1.0/lua-5.4.3/
H A Dlundump.c37 } LoadState; typedef
40 static l_noret error (LoadState *S, const char *why) { in error()
61 static lu_byte loadByte (LoadState *S) { in loadByte()
83 static size_t loadSize (LoadState *S) { in loadSize()
88 static int loadInt (LoadState *S) { in loadInt()
93 static lua_Number loadNumber (LoadState *S) { in loadNumber()
100 static lua_Integer loadInteger (LoadState *S) { in loadInteger()
144 static void loadCode (LoadState *S, Proto *f) { in loadCode()
227 static void loadDebug (LoadState *S, Proto *f) { in loadDebug()
290 static void checkHeader (LoadState *S) { in checkHeader()
[all …]
/dports/ports-mgmt/pkg/pkg-1.17.5/external/lua/src/
H A Dlundump.c37 } LoadState; typedef
40 static l_noret error (LoadState *S, const char *why) { in error()
61 static lu_byte loadByte (LoadState *S) { in loadByte()
83 static size_t loadSize (LoadState *S) { in loadSize()
88 static int loadInt (LoadState *S) { in loadInt()
93 static lua_Number loadNumber (LoadState *S) { in loadNumber()
100 static lua_Integer loadInteger (LoadState *S) { in loadInteger()
144 static void loadCode (LoadState *S, Proto *f) { in loadCode()
227 static void loadDebug (LoadState *S, Proto *f) { in loadDebug()
290 static void checkHeader (LoadState *S) { in checkHeader()
[all …]
/dports/www/civetweb/civetweb-1.15/src/third_party/lua-5.4.3/src/
H A Dlundump.c37 } LoadState; typedef
40 static l_noret error (LoadState *S, const char *why) { in error()
61 static lu_byte loadByte (LoadState *S) { in loadByte()
83 static size_t loadSize (LoadState *S) { in loadSize()
88 static int loadInt (LoadState *S) { in loadInt()
93 static lua_Number loadNumber (LoadState *S) { in loadNumber()
100 static lua_Integer loadInteger (LoadState *S) { in loadInteger()
144 static void loadCode (LoadState *S, Proto *f) { in loadCode()
227 static void loadDebug (LoadState *S, Proto *f) { in loadDebug()
290 static void checkHeader (LoadState *S) { in checkHeader()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/pdfium/core/fpdfapi/page/
H A Dcpdf_dib.cpp260 return LoadState::kFail; in StartLoadDIBBase()
270 return LoadState::kFail; in StartLoadDIBBase()
276 return LoadState::kFail; in StartLoadDIBBase()
279 return LoadState::kFail; in StartLoadDIBBase()
284 return LoadState::kFail; in StartLoadDIBBase()
289 return LoadState::kFail; in StartLoadDIBBase()
293 return LoadState::kFail; in StartLoadDIBBase()
296 return LoadState::kFail; in StartLoadDIBBase()
298 LoadState iLoadedMask = m_bHasMask ? StartLoadMask() : LoadState::kSuccess; in StartLoadDIBBase()
367 LoadState iContinueStatus = LoadState::kSuccess; in ContinueLoadDIBBase()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/pdfium/core/fpdfapi/page/
H A Dcpdf_dib.cpp261 return LoadState::kFail; in StartLoadDIBBase()
271 return LoadState::kFail; in StartLoadDIBBase()
277 return LoadState::kFail; in StartLoadDIBBase()
280 return LoadState::kFail; in StartLoadDIBBase()
285 return LoadState::kFail; in StartLoadDIBBase()
290 return LoadState::kFail; in StartLoadDIBBase()
294 return LoadState::kFail; in StartLoadDIBBase()
297 return LoadState::kFail; in StartLoadDIBBase()
299 LoadState iLoadedMask = m_bHasMask ? StartLoadMask() : LoadState::kSuccess; in StartLoadDIBBase()
370 LoadState iContinueStatus = LoadState::kSuccess; in ContinueLoadDIBBase()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/pdfium/core/fpdfapi/render/
H A Dcpdf_imagecacheentry.cpp56 CPDF_DIB::LoadState CPDF_ImageCacheEntry::StartGetCachedBitmap( in StartGetCachedBitmap()
63 return CPDF_DIB::LoadState::kSuccess; in StartGetCachedBitmap()
67 CPDF_DIB::LoadState ret = m_pCurBitmap.As<CPDF_DIB>()->StartLoadDIBBase( in StartGetCachedBitmap()
71 if (ret == CPDF_DIB::LoadState::kContinue) in StartGetCachedBitmap()
72 return CPDF_DIB::LoadState::kContinue; in StartGetCachedBitmap()
74 if (ret == CPDF_DIB::LoadState::kSuccess) in StartGetCachedBitmap()
78 return CPDF_DIB::LoadState::kFail; in StartGetCachedBitmap()
83 CPDF_DIB::LoadState ret = in Continue()
85 if (ret == CPDF_DIB::LoadState::kContinue) in Continue()
88 if (ret == CPDF_DIB::LoadState::kSuccess) in Continue()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/pdfium/core/fpdfapi/render/
H A Dcpdf_imagecacheentry.cpp57 CPDF_DIB::LoadState CPDF_ImageCacheEntry::StartGetCachedBitmap( in StartGetCachedBitmap()
64 return CPDF_DIB::LoadState::kSuccess; in StartGetCachedBitmap()
68 CPDF_DIB::LoadState ret = m_pCurBitmap.As<CPDF_DIB>()->StartLoadDIBBase( in StartGetCachedBitmap()
72 if (ret == CPDF_DIB::LoadState::kContinue) in StartGetCachedBitmap()
73 return CPDF_DIB::LoadState::kContinue; in StartGetCachedBitmap()
75 if (ret == CPDF_DIB::LoadState::kSuccess) in StartGetCachedBitmap()
79 return CPDF_DIB::LoadState::kFail; in StartGetCachedBitmap()
84 CPDF_DIB::LoadState ret = in Continue()
86 if (ret == CPDF_DIB::LoadState::kContinue) in Continue()
89 if (ret == CPDF_DIB::LoadState::kSuccess) in Continue()
/dports/games/libretro-gw/gw-libretro-2be30ba/lua/src/
H A Dlundump.c37 } LoadState; typedef
40 static l_noret error(LoadState *S, const char *why) { in error()
61 static lu_byte LoadByte (LoadState *S) { in LoadByte()
68 static int LoadInt (LoadState *S) { in LoadInt()
75 static lua_Number LoadNumber (LoadState *S) { in LoadNumber()
82 static lua_Integer LoadInteger (LoadState *S) { in LoadInteger()
89 static TString *LoadString (LoadState *S) { in LoadString()
103 static void LoadCode (LoadState *S, Proto *f) { in LoadCode()
176 static void LoadDebug (LoadState *S, Proto *f) { in LoadDebug()
232 static void checkHeader (LoadState *S) { in checkHeader()
[all …]
/dports/games/retroarch/RetroArch-1.9.7/deps/lua/src/
H A Dlundump.c36 } LoadState; typedef
39 static l_noret error(LoadState *S, const char *why) { in error()
60 static lu_byte LoadByte (LoadState *S) { in LoadByte()
67 static int LoadInt (LoadState *S) { in LoadInt()
74 static lua_Number LoadNumber (LoadState *S) { in LoadNumber()
81 static lua_Integer LoadInteger (LoadState *S) { in LoadInteger()
88 static TString *LoadString (LoadState *S) { in LoadString()
107 static void LoadCode (LoadState *S, Proto *f) { in LoadCode()
180 static void LoadDebug (LoadState *S, Proto *f) { in LoadDebug()
236 static void checkHeader (LoadState *S) { in checkHeader()
[all …]
/dports/graphics/darktable/darktable-3.6.1/src/external/lua/src/
H A Dlundump.c36 } LoadState; typedef
39 static l_noret error(LoadState *S, const char *why) { in error()
60 static lu_byte LoadByte (LoadState *S) { in LoadByte()
67 static int LoadInt (LoadState *S) { in LoadInt()
74 static lua_Number LoadNumber (LoadState *S) { in LoadNumber()
81 static lua_Integer LoadInteger (LoadState *S) { in LoadInteger()
88 static TString *LoadString (LoadState *S) { in LoadString()
107 static void LoadCode (LoadState *S, Proto *f) { in LoadCode()
180 static void LoadDebug (LoadState *S, Proto *f) { in LoadDebug()
236 static void checkHeader (LoadState *S) { in checkHeader()
[all …]
/dports/math/geogram/geogram-1.7.7/src/lib/geogram/third_party/lua/
H A Dlundump.c36 } LoadState; typedef
39 static l_noret error(LoadState *S, const char *why) { in error()
60 static lu_byte LoadByte (LoadState *S) { in LoadByte()
67 static int LoadInt (LoadState *S) { in LoadInt()
74 static lua_Number LoadNumber (LoadState *S) { in LoadNumber()
81 static lua_Integer LoadInteger (LoadState *S) { in LoadInteger()
88 static TString *LoadString (LoadState *S) { in LoadString()
107 static void LoadCode (LoadState *S, Proto *f) { in LoadCode()
180 static void LoadDebug (LoadState *S, Proto *f) { in LoadDebug()
236 static void checkHeader (LoadState *S) { in checkHeader()
[all …]

12345678910>>...45