HomeSort by relevance Sort by last modified time
    Searched refs:record (Results 226 - 250 of 383) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libsepol/src/
users.c 17 int user_idx, sepol_user_t ** record)
92 *record = tmp_record;
  /external/mdnsresponder/Clients/
dns-sd.c 218 static DNSRecordRef record = NULL; variable
583 case 0: printf("Adding Test HINFO record\n");
584 err = DNSServiceAddRecord(client, &record, 0, kDNSServiceType_HINFO, sizeof(myhinfoW), &myhinfoW[0], 0);
587 case 1: printf("Updating Test HINFO record\n");
588 err = DNSServiceUpdateRecord(client, record, 0, sizeof(myhinfoX), &myhinfoX[0], 0);
591 case 2: printf("Removing Test HINFO record\n");
592 err = DNSServiceRemoveRecord(client, record, 0);
606 printf("Updating Test TXT record to %c\n", updatetest[1]);
613 printf("Adding big NULL record\n");
614 err = DNSServiceAddRecord(client, &record, 0, kDNSServiceType_NULL, sizeof(bigNULL), &bigNULL[0], 0)
    [all...]
  /external/skia/src/animator/
SkDisplayXMLParser.cpp 250 Parent record = { displayable, type }; local
251 *fParents.append() = record;
  /gdk/build/core/
add-toolchain.mk 43 # Now record the toolchain-specific information
  /libcore/luni/src/main/java/java/util/logging/
FileHandler.java 41 * By default, the I/O buffering mechanism is enabled, but when each log record
505 * @param record
506 * the log record to publish.
509 public synchronized void publish(LogRecord record) {
510 super.publish(record);
  /ndk/build/core/
add-toolchain.mk 43 # Now record the toolchain-specific information
  /external/mesa3d/src/glsl/
ir.cpp 528 /* If the constant is a record, the types of each of the entries in
1007 this->record = value;
1009 this->type = (this->record != NULL)
1010 ? this->record->type->field_type(field) : glsl_type::error_type;
1020 this->record = new(ctx) ir_dereference_variable(var);
1022 this->type = (this->record != NULL)
1023 ? this->record->type->field_type(field) : glsl_type::error_type;
    [all...]
opt_structure_splitting.cpp 221 ir_dereference_variable *deref_var = deref_record->record->as_dereference_variable();
  /frameworks/base/telephony/java/com/android/internal/telephony/
RIL.java     [all...]
  /frameworks/base/services/java/com/android/server/
LocationManagerService.java 1010 UpdateRecord record = records.get(i); local
1159 UpdateRecord record = records.get(i); local
    [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 531 // If the struct is bigger than the size of the record type,
    [all...]
CGBlocks.cpp 200 const CXXRecordDecl *record = cast<CXXRecordDecl>(recordType->getDecl()); local
203 if (!record->hasTrivialDestructor()) return false;
204 if (!record->hasTrivialCopyConstructor()) return false;
208 return !record->hasMutableFields();
378 if (const CXXRecordDecl *record =
380 if (!record->hasTrivialDestructor()) {
    [all...]
  /external/bluetooth/bluez/health/
hdp_util.c 326 static gboolean set_sdp_services_uuid(sdp_record_t *record, HdpRole role)
334 sdp_get_service_classes(record, &svc_list);
344 if (sdp_set_service_classes(record, svc_list) < 0) {
413 /* attach protocol information to service record */
515 /* attach protocol information to service record */
650 static gboolean register_data_exchange_spec(sdp_record_t *record)
660 if (sdp_attr_add(record, SDP_ATTR_DATA_EXCHANGE_SPEC, spec) < 0) {
869 "Can't get remote SDP record");
1099 "Can't get remote SDP record");
1167 "Can't get remote SDP record");
    [all...]
  /external/bluetooth/bluez/serial/
port.c 364 sdp_record_t *record = NULL; local
375 error("Unable to get service record: %s (%d)", strerror(-err),
382 error("No record found");
383 reply = btd_error_failed(port->msg, "No record found");
387 record = recs->data;
389 if (sdp_get_access_protos(record, &protos) < 0) {
390 error("Unable to get access protos from port record");
  /external/webkit/Source/WebCore/html/parser/
HTMLTreeBuilder.cpp 1556 HTMLElementStack::ElementRecord* record = m_tree.openElements()->topRecord(); local
1590 HTMLElementStack::ElementRecord* record = m_tree.openElements()->topRecord(); local
    [all...]
HTMLConstructionSite.cpp 385 PassRefPtr<Element> HTMLConstructionSite::createHTMLElementFromElementRecord(HTMLElementStack::ElementRecord* record)
387 return createHTMLElementFromSavedElement(record->element());
  /external/webkit/Source/WebCore/platform/graphics/win/
FontCacheWin.cpp 73 static int CALLBACK metaFileEnumProc(HDC hdc, HANDLETABLE* table, CONST ENHMETARECORD* record, int tableEntries, LPARAM logFont)
75 if (record->iType == EMR_EXTCREATEFONTINDIRECTW) {
76 const EMREXTCREATEFONTINDIRECTW* createFontRecord = reinterpret_cast<const EMREXTCREATEFONTINDIRECTW*>(record);
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
ConsoleHandlerTest.java 147 * 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) {
426 CallVerificationStack.getInstance().push(record);
StreamHandlerTest.java 296 * 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 = new LogRecord(Level.FINE, "abc") local
    [all...]
XMLFormatterTest.java 96 assertTrue(output.indexOf("<record>") >= 0);
117 assertTrue(output.indexOf("<record>") >= 0);
229 public void publish(LogRecord record) {
  /external/webkit/Tools/Scripts/webkitpy/style/
checker.py 351 non_error_filter.filter = lambda record: record.levelno < logging.WARNING
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldFileHandlerTest.java 351 // if one record is null and is not the last record, means
475 public boolean isLoggable(LogRecord record) {
476 return !record.getMessage().equals("false");
OldLogManagerTest.java 253 public void publish(LogRecord record) {}
  /development/ndk/platforms/android-9/samples/native-audio/src/com/example/nativeaudio/
NativeAudio.java 247 ((Button) findViewById(R.id.record)).setOnClickListener(new OnClickListener() {
  /external/zlib/contrib/pascal/
zlibpas.pas 28 z_stream = packed record
50 gz_header = packed record

Completed in 443 milliseconds

1 2 3 4 5 6 7 8 91011>>