Searched defs:record (Results 226 - 241 of 241) sorted by last modified time

12345678910

/external/bluetooth/bluedroid/main/
H A Dbte_conf.c103 tBTA_DI_RECORD record; local
104 record.vendor = config_get_int(config, section_name, "vendorId", LMP_COMPID_BROADCOM);
105 record.vendor_id_source = config_get_int(config, section_name, "vendorIdSource", DI_VENDOR_ID_SOURCE_BTSIG);
106 record.product = config_get_int(config, section_name, "productId", 0);
107 record.version = config_get_int(config, section_name, "version", 0);
108 record.primary_record = config_get_bool(config, section_name, "primaryRecord", false);
109 strlcpy(record.client_executable_url, config_get_string(config, section_name, "clientExecutableURL", ""), sizeof(record.client_executable_url));
110 strlcpy(record.service_description, config_get_string(config, section_name, "serviceDescription", ""), sizeof(record
[all...]
/external/bluetooth/bluedroid/stack/sdp/
H A Dsdpint.h120 /* Define the attribute element of the SDP database record */
129 /* An SDP record consists of a handle, and 1 or more attributes */
143 UINT32 di_primary_handle; /* Device ID Primary record or NULL if nonexistent */
146 tSDP_RECORD record[SDP_MAX_RECORDS]; member in struct:__anon1708
162 tSDP_RECORD *prev_sdp_rec; /* last sdp record that was completely sent in the response */
194 UINT32 handles[SDP_MAX_DISC_SERVER_RECS]; /* Discovered server record handles */
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DConsoleHandlerTest.java147 * Test close() when having sufficient privilege, and a record has been
185 * Test close() when having sufficient privilege, and no record has been
204 * Test publish(), use no filter, having output stream, normal log record.
264 * Test publish(), use a filter, having output stream, normal log record.
303 * Test publish(), null log record, having output stream, spec said
318 * Test publish(), a log record with empty msg, having output stream
334 * Test publish(), a log record with null msg, having output stream
425 public boolean isLoggable(LogRecord record) { argument
426 CallVerificationStack.getInstance().push(record);
H A DFileHandlerTest.java202 // output 3 times, and only one record left
228 // if one record is null and is not the last record, means
610 public boolean isLoggable(LogRecord record) { argument
611 return !record.getMessage().equals("false");
H A DFilterTest.java39 public boolean isLoggable(LogRecord record) { argument
H A DHandlerTest.java342 public void publish(LogRecord record) { argument
355 public boolean isLoggable(LogRecord record) { argument
356 CallVerificationStack.getInstance().push(record);
H A DLogManagerTest.java963 public void publish(LogRecord record) { argument
H A DLogRecordTest.java377 public void publish(LogRecord record) { argument
378 className = record.getSourceClassName();
379 methodName = record.getSourceMethodName();
422 public void log(LogRecord record) { argument
423 if (isLoggable(record.getLevel())) {
428 ha[i].publish(record);
436 ha[i].publish(record);
H A DLoggerTest.java2600 * Test log(LogRecord) for a normal log record. Meanwhile the logger has an
2624 * Test log(LogRecord) with null log record.
2636 * Test log(LogRecord) for a normal log record. Meanwhile the logger has an
2654 * Test log(LogRecord) for a normal log record. Meanwhile the logger has an
2655 * appropriate level, a filter that accepts the fed log record, no parent.
2682 * Test log(LogRecord) for a normal log record. Meanwhile the logger has an
2683 * appropriate level, a filter that rejects the fed log record, no parent.
2709 * Test that the parent's handler is notified for a new log record when
2754 // set the record off
2761 * Test that the ancestor's handler is notified for a new log record whe
3055 log(LogRecord record) argument
3076 publish(LogRecord record) argument
3095 publish(LogRecord record) argument
3106 isLoggable(LogRecord record) argument
3117 isLoggable(LogRecord record) argument
[all...]
H A DMemoryHandlerTest.java138 LogRecord record = new LogRecord(Level.FINER, "MSG1");
139 assertFalse(handler.isLoggable(record));
141 record = new LogRecord(Level.FINE, "MSG2");
142 assertTrue(handler.isLoggable(record));
144 record = new LogRecord(Level.CONFIG, "MSG3");
145 assertTrue(handler.isLoggable(record));
147 record = new LogRecord(Level.CONFIG, "false");
148 assertFalse(handler.isLoggable(record));
151 record = new LogRecord(Level.CONFIG, "false");
152 assertTrue(handler.isLoggable(record));
360 isLoggable(LogRecord record) argument
374 publish(LogRecord record) argument
[all...]
H A DSocketHandlerTest.java407 * Test close() when having sufficient privilege, and a record has been
435 * Test close() when having sufficient privilege, and no record has been
461 * Test publish(), use no filter, having output stream, normal log record.
500 * Test publish(), use a filter, having output stream, normal log record.
530 * Test publish(), null log record, having output stream
557 * Test publish(), a log record with empty msg, having output stream
582 * Test publish(), a log record with null msg, having output stream
643 public boolean isLoggable(LogRecord record) { argument
644 CallVerificationStack.getInstance().push(record);
H A DStreamHandlerTest.java296 * Test close() when having sufficient privilege, and a record has been
329 * Test close() when having sufficient privilege, and no record has been
435 * Test isLoggable(), null log record, having output stream. Handler should
445 * Test isLoggable(), null log record, without output stream
453 * Test publish(), use no filter, having output stream, normal log record.
472 * Test publish(), use no filter, having output stream, normal log record.
506 * Test publish(), use a filter, having output stream, normal log record.
541 * Test publish(), null log record, handler should call ErrorManager to
551 * Test publish(), null log record, without output stream
560 LogRecord record
804 isLoggable(LogRecord record) argument
[all...]
H A DXMLFormatterTest.java96 assertTrue(output.indexOf("<record>") >= 0);
117 assertTrue(output.indexOf("<record>") >= 0);
228 public void publish(LogRecord record) { argument
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Ddebug.py743 Subclasses can override the record() method (which defaults to printing to
744 stdout) to record the events in a different way.
754 def record(self, event): member in class:TraceDebugEventListener
758 self.record("enterRule "+ruleName)
761 self.record("exitRule "+ruleName)
764 self.record("enterSubRule")
767 self.record("exitSubRule")
770 self.record("location %s:%s" % (line, pos))
775 self.record("consumeNode %s %s %s" % (
781 self.record("L
828 def record(self, event): member in class:RecordDebugEventListener
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Drecord-event-listener.rb19 def record( event_message, *interpolation_arguments ) method in class:ANTLR3.Debug.RecordEventListener
H A Dtrace-event-listener.rb10 Subclasses can override the record() method (which defaults to printing to
11 stdout) to record the events in a different way.
23 def record( event_message, *interpolation_arguments ) method in class:ANTLR3.Debug.TraceEventListener
29 record "(%s): number=%s", __method__, alt_number
33 record "(%s): rule=%s", __method__, rule_name
37 record "(%s): rule=%s", __method__, rule_name
41 record "(%s): decision=%s", __method__, decision_number
45 record "(%s): decision=%s", __method__, decision_number
49 record '(%s): line=%s position=%s', __method__, line, position
53 record '(
[all...]

Completed in 277 milliseconds

12345678910