Home
last modified time | relevance | path

Searched refs:auditEvent (Results 1 – 17 of 17) sorted by relevance

/dports/devel/libzookeeper/apache-zookeeper-3.7.0/zookeeper-server/src/test/java/org/apache/zookeeper/audit/
H A DAuditEventTest.java28 AuditEvent auditEvent = new AuditEvent(Result.SUCCESS); in testFormat() local
29 auditEvent.addEntry(AuditEvent.FieldName.USER, "Value1"); in testFormat()
30 auditEvent.addEntry(AuditEvent.FieldName.OPERATION, "Value2"); in testFormat()
31 String actual = auditEvent.toString(); in testFormat()
38 AuditEvent auditEvent = new AuditEvent(Result.SUCCESS); in testFormatShouldIgnoreKeyIfValueIsNull() local
39 auditEvent.addEntry(AuditEvent.FieldName.USER, null); in testFormatShouldIgnoreKeyIfValueIsNull()
40 auditEvent.addEntry(AuditEvent.FieldName.OPERATION, "Value2"); in testFormatShouldIgnoreKeyIfValueIsNull()
41 String actual = auditEvent.toString(); in testFormatShouldIgnoreKeyIfValueIsNull()
/dports/devel/libzookeeper/apache-zookeeper-3.7.0/zookeeper-server/src/main/java/org/apache/zookeeper/audit/
H A DLog4jAuditLogger.java31 public void logAuditEvent(AuditEvent auditEvent) { in logAuditEvent() argument
32 if (auditEvent.getResult() == Result.FAILURE) { in logAuditEvent()
33 LOG.error(auditEvent.toString()); in logAuditEvent()
35 LOG.info(auditEvent.toString()); in logAuditEvent()
H A DAuditLogger.java33 void logAuditEvent(AuditEvent auditEvent); in logAuditEvent() argument
/dports/net-im/openfire/Openfire-4.7.1/xmppserver/src/main/java/org/jivesoftware/admin/servlet/
H A DSecurityAuditViewerServlet.java44 Predicate<SecurityAuditEvent> predicate = auditEvent -> true; in doGet()
60 predicate = auditEvent -> false; in doGet()
71 predicate = auditEvent -> false; in doGet()
86 predicate = predicate.and(auditEvent -> !auditEvent.getEventStamp().before(date)); in doGet()
92 predicate = predicate.and(auditEvent -> auditEvent.getEventStamp().before(date)); in doGet()
/dports/devel/pear-PHP_CompatInfo/PHP_CompatInfo-1.9.0/docs/examples/
H A Dpci180_parsestring_toxml.php27 function pci180_debug(&$auditEvent) argument
29 $notifyName = $auditEvent->getNotificationName();
30 $notifyInfo = $auditEvent->getNotificationInfo();
/dports/sysutils/kubectl/kubernetes-1.22.2/test/utils/
H A Daudit.go208 type auditEvent struct { struct
215 events []*auditEvent
220 expectations := &auditEventTracker{events: []*auditEvent{}}
223 expectations.events = append(expectations.events, &auditEvent{event: event, found: false})
/dports/devel/pear-PHP_CompatInfo/PHP_CompatInfo-1.9.0/CompatInfo/
H A DRenderer.php261 function update(&$auditEvent)
263 $notifyName = $auditEvent->getNotificationName();
264 $notifyInfo = $auditEvent->getNotificationInfo();
/dports/devel/pear-PHP_CompatInfo/PHP_CompatInfo-1.9.0/tests/
H A DPHP_CompatInfo_TestSuite_Bugs.php96 public function debugNotify(&$auditEvent) argument
98 $notifyName = $auditEvent->getNotificationName();
99 $notifyInfo = $auditEvent->getNotificationInfo();
H A DPHP_CompatInfo_TestSuite_Standard.php96 public function debugNotify(&$auditEvent) argument
98 $notifyName = $auditEvent->getNotificationName();
99 $notifyInfo = $auditEvent->getNotificationInfo();
/dports/databases/py-gdbm/Python-3.8.12/Python/
H A Dsysmodule.c384 PyObject *auditEvent = args[0]; in sys_audit() local
385 if (!auditEvent) { in sys_audit()
389 if (!PyUnicode_Check(auditEvent)) { in sys_audit()
391 Py_TYPE(auditEvent)->tp_name); in sys_audit()
394 const char *event = PyUnicode_AsUTF8(auditEvent); in sys_audit()
/dports/databases/py-sqlite3/Python-3.8.12/Python/
H A Dsysmodule.c384 PyObject *auditEvent = args[0]; in sys_audit() local
385 if (!auditEvent) { in sys_audit()
389 if (!PyUnicode_Check(auditEvent)) { in sys_audit()
391 Py_TYPE(auditEvent)->tp_name); in sys_audit()
394 const char *event = PyUnicode_AsUTF8(auditEvent); in sys_audit()
/dports/lang/python-tools/Python-3.8.12/Python/
H A Dsysmodule.c384 PyObject *auditEvent = args[0]; in sys_audit() local
385 if (!auditEvent) { in sys_audit()
389 if (!PyUnicode_Check(auditEvent)) { in sys_audit()
391 Py_TYPE(auditEvent)->tp_name); in sys_audit()
394 const char *event = PyUnicode_AsUTF8(auditEvent); in sys_audit()
/dports/lang/python38/Python-3.8.12/Python/
H A Dsysmodule.c384 PyObject *auditEvent = args[0]; in sys_audit() local
385 if (!auditEvent) { in sys_audit()
389 if (!PyUnicode_Check(auditEvent)) { in sys_audit()
391 Py_TYPE(auditEvent)->tp_name); in sys_audit()
394 const char *event = PyUnicode_AsUTF8(auditEvent); in sys_audit()
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Python/
H A Dsysmodule.c384 PyObject *auditEvent = args[0]; in sys_audit() local
385 if (!auditEvent) { in sys_audit()
389 if (!PyUnicode_Check(auditEvent)) { in sys_audit()
391 Py_TYPE(auditEvent)->tp_name); in sys_audit()
394 const char *event = PyUnicode_AsUTF8(auditEvent); in sys_audit()
/dports/lang/python311/Python-3.11.0a3/Python/
H A Dsysmodule.c495 PyObject *auditEvent = args[0]; in sys_audit() local
496 if (!auditEvent) { in sys_audit()
501 if (!PyUnicode_Check(auditEvent)) { in sys_audit()
504 Py_TYPE(auditEvent)->tp_name); in sys_audit()
507 const char *event = PyUnicode_AsUTF8(auditEvent); in sys_audit()
/dports/lang/python310/Python-3.10.1/Python/
H A Dsysmodule.c495 PyObject *auditEvent = args[0]; in sys_audit() local
496 if (!auditEvent) { in sys_audit()
501 if (!PyUnicode_Check(auditEvent)) { in sys_audit()
504 Py_TYPE(auditEvent)->tp_name); in sys_audit()
507 const char *event = PyUnicode_AsUTF8(auditEvent); in sys_audit()
/dports/lang/python39/Python-3.9.9/Python/
H A Dsysmodule.c473 PyObject *auditEvent = args[0]; in sys_audit() local
474 if (!auditEvent) { in sys_audit()
479 if (!PyUnicode_Check(auditEvent)) { in sys_audit()
482 Py_TYPE(auditEvent)->tp_name); in sys_audit()
485 const char *event = PyUnicode_AsUTF8(auditEvent); in sys_audit()