Home
last modified time | relevance | path

Searched refs:logName (Results 1 – 25 of 1144) sorted by relevance

12345678910>>...46

/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Diagnostics/
H A DEventLog.cs70 public EventLog(string logName) : this (logName, ".") in EventLog() argument
91 this.logName = logName; in EventLog()
125 return logName;
133 logName = value;
233 if (logName == null || logName.Length == 0) in Clear()
266 string logName, in CreateEventSource() argument
304 if (logName == null || logName.Length == 0) in Delete()
352 if (logName == null || logName.Length == 0) in Exists()
521 if (logName != null && logName.Length > 0) in GetLogName()
526 return logName; in GetLogName()
[all …]
H A DEventLogImpl.cs119 string logName = CoreEventLog.Log; in GetEntries()
120 if (logName == null || logName.Length == 0) in GetEntries()
123 if (!EventLog.Exists (logName)) in GetEntries()
126 + " computer '{1}' does not exist.", logName, in GetEntries()
188 if (logName.Length >= 8) { in ValidateCustomerLogName()
189 string significantName = logName.Substring (0, 8); in ValidateCustomerLogName()
193 + " invalid for customer log creation.", logName)); in ValidateCustomerLogName()
211 logName, log)); in ValidateCustomerLogName()
217 if (SourceExists (logName, machineName)) { in ValidateCustomerLogName()
222 logName)); in ValidateCustomerLogName()
[all …]
H A DEventSourceCreationData.cs42 public EventSourceCreationData (string source, string logName) in EventSourceCreationData() argument
45 _logName = logName; in EventSourceCreationData()
49 internal EventSourceCreationData (string source, string logName, string machineName) in EventSourceCreationData() argument
52 if (logName == null || logName.Length == 0) { in EventSourceCreationData()
55 _logName = logName; in EventSourceCreationData()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.EventLog/src/System/Diagnostics/
H A DEventLog.cs37 public EventLog(string logName) : this(logName, ".", string.Empty) in EventLog() argument
41 … public EventLog(string logName, string machineName) : this(logName, machineName, string.Empty) in EventLog() argument
261 if (logName == null || logName.Length == 0) in CreateEventSource()
262 logName = "Application"; in CreateEventSource()
263 if (!ValidLogName(logName, false)) in CreateEventSource()
342 if (logName != source) in CreateEventSource()
371 Delete(logName, "."); in Delete()
378 if (logName == null || logName.Length == 0) in Delete()
510 return Exists(logName, "."); in Exists()
518 if (logName == null || logName.Length == 0) in Exists()
[all …]
/dports/net/syncthing/syncthing-1.18.1/syncthing/cmd/syncthing/
H A Dmonitor_test.go31 logName := filepath.Join(dir, "log.txt")
36 rf, err := newRotatedFile(logName, open, maxSize, 2)
46 checkSize(t, logName, len(testData))
47 checkNotExist(t, logName+".0")
54 checkSize(t, logName, len(testData))
56 checkNotExist(t, logName+".1")
60 checkSize(t, logName, len(testData)+1)
62 checkNotExist(t, numberedFile(logName, 1))
69 checkSize(t, logName, len(testData))
72 checkNotExist(t, numberedFile(logName, 2))
[all …]
/dports/devel/hadoop/hadoop-1.2.1/src/mapred/org/apache/hadoop/mapred/
H A DTaskLogsTruncater.java102 for (LogName logName : LogName.values()) { in shouldTruncateLogs()
148 for (LogName logName : LogName.values()) { in truncateLogs()
150 updatedTaskLogFileDetails, logName); in truncateLogs()
229 updatedTaskLogFileDetails, logName); in truncateLogs()
271 updatedTaskLogFileDetails, logName); in truncateLogs()
292 updatedTaskLogFileDetails, logName); in truncateLogs()
316 LogName logName) { in copyOriginalIndexFileInfo() argument
323 updatedTaskLogFileDetails.get(task).put(logName, in copyOriginalIndexFileInfo()
324 taskLogFileDetails.get(task).get(logName)); in copyOriginalIndexFileInfo()
361 LogName logName) { in isTruncationNeeded() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/services/monitoring/system/diagnosticts/
H A DEventLog.cs100 public EventLog(string logName) : this(logName, ".", "") { in EventLog() argument
106 public EventLog(string logName, string machineName) : this(logName, machineName, "") { in EventLog() argument
400 if (logName == null || logName.Length==0) in CreateEventSource()
401 logName = "Application"; in CreateEventSource()
504 if (logName != source) { in CreateEventSource()
574 Delete(logName, "."); in Delete()
591 if (logName == null || logName.Length==0) in Delete()
785 return Exists(logName, "."); in Exists()
803 if (logName == null || logName.Length==0) in Exists()
1152 if (logName.Length > 8) in SetSpecialLogRegValues()
[all …]
H A DEventSourceCreationData.cs16 public EventSourceCreationData(string source, string logName) { in EventSourceCreationData() argument
18 _logName = logName; in EventSourceCreationData()
21 internal EventSourceCreationData(string source, string logName, string machineName) { in EventSourceCreationData() argument
23 _logName = logName; in EventSourceCreationData()
27 private EventSourceCreationData(string source, string logName, string machineName, in EventSourceCreationData() argument
31 _logName = logName; in EventSourceCreationData()
/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/Source/
H A DLog.cpp22 void CLog::Print(const char* logName, const char* format, ...) in Print() argument
26 auto& logStream(GetLog(logName)); in Print()
35 void CLog::Warn(const char* logName, const char* format, ...) in Warn() argument
38 auto& logStream(GetLog(logName)); in Warn()
47 Framework::CStdStream& CLog::GetLog(const char* logName) in GetLog() argument
49 auto logIterator(m_logs.find(logName)); in GetLog()
52 auto logPath = m_logBasePath / (std::string(logName) + ".log"); in GetLog()
54 m_logs[logName] = std::move(logStream); in GetLog()
55 logIterator = m_logs.find(logName); in GetLog()
/dports/math/vtk6/VTK-6.2.0/Parallel/Core/
H A DvtkSocketCommunicator.cxx979 if(logName) in LogTagged()
1017 else if ((wordSize == 1) && logName && (strcmp(logName, "Int8") == 0)) in LogTagged()
1023 else if ((wordSize == 1) && logName && (strcmp(logName, "UInt8") == 0)) in LogTagged()
1029 else if ((wordSize == 2) && logName && (strcmp(logName, "Int16") == 0)) in LogTagged()
1035 else if ((wordSize == 2) && logName && (strcmp(logName, "UInt16") == 0)) in LogTagged()
1041 else if ((wordSize == 4) && logName && (strcmp(logName, "Int32") == 0)) in LogTagged()
1047 else if ((wordSize == 4) && logName && (strcmp(logName, "UInt32") == 0)) in LogTagged()
1053 else if ((wordSize == 8) && logName && (strcmp(logName, "Int64") == 0)) in LogTagged()
1059 else if ((wordSize == 8) && logName && (strcmp(logName, "UInt64") == 0)) in LogTagged()
1065 else if ((wordSize == 4) && logName && (strcmp(logName, "Float32") == 0)) in LogTagged()
[all …]
/dports/math/vtk9/VTK-9.1.0/Parallel/Core/
H A DvtkSocketCommunicator.cxx946 if (logName) in LogTagged()
980 else if ((wordSize == 1) && logName && (strcmp(logName, "Int8") == 0)) in LogTagged()
985 else if ((wordSize == 1) && logName && (strcmp(logName, "UInt8") == 0)) in LogTagged()
990 else if ((wordSize == 2) && logName && (strcmp(logName, "Int16") == 0)) in LogTagged()
995 else if ((wordSize == 2) && logName && (strcmp(logName, "UInt16") == 0)) in LogTagged()
1000 else if ((wordSize == 4) && logName && (strcmp(logName, "Int32") == 0)) in LogTagged()
1005 else if ((wordSize == 4) && logName && (strcmp(logName, "UInt32") == 0)) in LogTagged()
1010 else if ((wordSize == 8) && logName && (strcmp(logName, "Int64") == 0)) in LogTagged()
1015 else if ((wordSize == 8) && logName && (strcmp(logName, "UInt64") == 0)) in LogTagged()
1020 else if ((wordSize == 4) && logName && (strcmp(logName, "Float32") == 0)) in LogTagged()
[all …]
/dports/math/vtk8/VTK-8.2.0/Parallel/Core/
H A DvtkSocketCommunicator.cxx975 if(logName) in LogTagged()
1013 else if ((wordSize == 1) && logName && (strcmp(logName, "Int8") == 0)) in LogTagged()
1019 else if ((wordSize == 1) && logName && (strcmp(logName, "UInt8") == 0)) in LogTagged()
1025 else if ((wordSize == 2) && logName && (strcmp(logName, "Int16") == 0)) in LogTagged()
1031 else if ((wordSize == 2) && logName && (strcmp(logName, "UInt16") == 0)) in LogTagged()
1037 else if ((wordSize == 4) && logName && (strcmp(logName, "Int32") == 0)) in LogTagged()
1043 else if ((wordSize == 4) && logName && (strcmp(logName, "UInt32") == 0)) in LogTagged()
1049 else if ((wordSize == 8) && logName && (strcmp(logName, "Int64") == 0)) in LogTagged()
1055 else if ((wordSize == 8) && logName && (strcmp(logName, "UInt64") == 0)) in LogTagged()
1061 else if ((wordSize == 4) && logName && (strcmp(logName, "Float32") == 0)) in LogTagged()
[all …]
/dports/science/PETSc/petsc-3.14.1/config/BuildSystem/
H A Dlogger.py22 self.logName = None
87 def checkLog(self, logName): argument
91 if logName is None:
93 if logName is None:
95 logName = self.argDB['log']
97 logName = 'default.log'
98 self.logName = logName
99 self.logExists = os.path.exists(self.logName)
102 def createLog(self, logName, initLog = None): argument
111 if self.checkLog(logName):
[all …]
/dports/sysutils/kdebugsettings/kdebugsettings-21.12.3/src/
H A Dkdebugsettingsutil.h28 return !logName.isEmpty(); in isValid()
33 return (enabled == other.enabled) && (type == other.type) && (logName == other.logName);
38 QString logName; member
57 return !logName.isEmpty(); in isValid()
63 return (logName == other.logName) && (loggingTypes == other.loggingTypes);
66 QString logName; member
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/DataFusion/
H A DCloudAuditOptions.php22 public $logName; variable in Google_Service_DataFusion_CloudAuditOptions
38 public function setLogName($logName) argument
40 $this->logName = $logName;
44 return $this->logName;
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/Compute/
H A DLogConfigCloudAuditOptions.php22 public $logName; variable in Google_Service_Compute_LogConfigCloudAuditOptions
38 public function setLogName($logName) argument
40 $this->logName = $logName;
44 return $this->logName;
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/DeploymentManager/
H A DLogConfigCloudAuditOptions.php22 public $logName; variable in Google_Service_DeploymentManager_LogConfigCloudAuditOptions
38 public function setLogName($logName) argument
40 $this->logName = $logName;
44 return $this->logName;
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/Compute/
H A DLogConfigCloudAuditOptions.php22 public $logName; variable in Google_Service_Compute_LogConfigCloudAuditOptions
38 public function setLogName($logName) argument
40 $this->logName = $logName;
44 return $this->logName;
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/GameServices/
H A DCloudAuditOptions.php22 public $logName; variable in Google_Service_GameServices_CloudAuditOptions
38 public function setLogName($logName) argument
40 $this->logName = $logName;
44 return $this->logName;
/dports/lang/clips/clips_core_source_630/core/
H A Dmsgcom.c715 const char *logName, in EnvListDefmessageHandlers() argument
794 const char *logName, in DisplayHandlersInLinks() argument
942 const char *logName, in DefmessageHandlerWatchPrint() argument
971 const char *logName, in DefmessageHandlerWatchSupport() argument
1100 const char *logName, in WatchClassHandlers() argument
1148 const char *logName, in PrintHandlerWatchFlag() argument
1153 EnvPrintRouter(theEnv,logName," "); in PrintHandlerWatchFlag()
1155 EnvPrintRouter(theEnv,logName," "); in PrintHandlerWatchFlag()
1159 EnvPrintRouter(theEnv,logName," = on\n"); in PrintHandlerWatchFlag()
1161 EnvPrintRouter(theEnv,logName," = off\n"); in PrintHandlerWatchFlag()
[all …]
H A Dinsfun.c981 const char *logName, in PrintSlot() argument
986 EnvPrintRouter(theEnv,logName,"slot "); in PrintSlot()
992 EnvPrintRouter(theEnv,logName,"]"); in PrintSlot()
1042 const char *logName, in PrintInstanceName() argument
1052 EnvPrintRouter(theEnv,logName,"]>"); in PrintInstanceName()
1056 EnvPrintRouter(theEnv,logName,"["); in PrintInstanceName()
1058 EnvPrintRouter(theEnv,logName,"]"); in PrintInstanceName()
1074 const char *logName, in PrintInstanceLongForm() argument
1085 EnvPrintRouter(theEnv,logName,"["); in PrintInstanceLongForm()
1087 EnvPrintRouter(theEnv,logName,"]"); in PrintInstanceLongForm()
[all …]
/dports/accessibility/gammy/gammy-0.9.64/include/plog/Appenders/
H A DEventLogAppender.h55 static bool add(const wchar_t* sourceName, const wchar_t* logName = L"Application")
59 getKeyNames(sourceName, logName, sourceKeyName, logKeyName);
77 static bool exists(const wchar_t* sourceName, const wchar_t* logName = L"Application")
81 getKeyNames(sourceName, logName, sourceKeyName, logKeyName);
93 static void remove(const wchar_t* sourceName, const wchar_t* logName = L"Application")
97 getKeyNames(sourceName, logName, sourceKeyName, logKeyName);
104 …static void getKeyNames(const wchar_t* sourceName, const wchar_t* logName, std::wstring& sourceKey… in getKeyNames() argument
107 logKeyName = kPrefix + logName; in getKeyNames()
/dports/editors/encryptpad/EncryptPad-0.5.0.1/deps/plog/include/plog/Appenders/
H A DEventLogAppender.h55 static bool add(const wchar_t* sourceName, const wchar_t* logName = L"Application")
59 getKeyNames(sourceName, logName, sourceKeyName, logKeyName);
77 static bool exists(const wchar_t* sourceName, const wchar_t* logName = L"Application")
81 getKeyNames(sourceName, logName, sourceKeyName, logKeyName);
93 static void remove(const wchar_t* sourceName, const wchar_t* logName = L"Application")
97 getKeyNames(sourceName, logName, sourceKeyName, logKeyName);
104 …static void getKeyNames(const wchar_t* sourceName, const wchar_t* logName, std::wstring& sourceKey… in getKeyNames() argument
107 logKeyName = kPrefix + logName; in getKeyNames()
/dports/www/libdatachannel/libdatachannel-0.16.1/deps/plog/include/plog/Appenders/
H A DEventLogAppender.h55 static bool add(const wchar_t* sourceName, const wchar_t* logName = L"Application")
59 getKeyNames(sourceName, logName, sourceKeyName, logKeyName);
77 static bool exists(const wchar_t* sourceName, const wchar_t* logName = L"Application")
81 getKeyNames(sourceName, logName, sourceKeyName, logKeyName);
93 static void remove(const wchar_t* sourceName, const wchar_t* logName = L"Application")
97 getKeyNames(sourceName, logName, sourceKeyName, logKeyName);
104 …static void getKeyNames(const wchar_t* sourceName, const wchar_t* logName, std::wstring& sourceKey… in getKeyNames() argument
107 logKeyName = kPrefix + logName; in getKeyNames()
/dports/editors/libreoffice/libreoffice-7.2.6.2/onlineupdate/source/service/
H A Dmaintenanceservice.cxx181 WCHAR logName[64] = { L'\0' }; in GetBackupLogPath() local
182 wcsncpy(path, basePath, sizeof(logName) / sizeof(logName[0]) - 1); in GetBackupLogPath()
185 swprintf(logName, sizeof(logName) / sizeof(logName[0]), in GetBackupLogPath()
190 swprintf(logName, sizeof(logName) / sizeof(logName[0]), in GetBackupLogPath()
193 return PathAppendSafe(path, logName); in GetBackupLogPath()

12345678910>>...46