Searched refs:record (Results 76 - 100 of 205) sorted by relevance

123456789

/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dlogutils.py136 def should_log(record):
142 if record.name.startswith("webkitpy.thirdparty.autoinstall"):
/external/libsepol/src/
H A Dinterfaces.c11 /* Create a low level structure from record */
14 ocontext_t ** iface, const sepol_iface_t * record)
25 tmp_iface->u.name = strdup(sepol_iface_get_name(record));
31 &tmp_con, sepol_iface_get_ifcon(record)) < 0)
40 &tmp_con, sepol_iface_get_msgcon(record)) < 0)
68 ocontext_t * iface, sepol_iface_t ** record)
98 *record = tmp_record;
102 ERR(handle, "could not convert interface %s to record", name);
12 iface_from_record(sepol_handle_t * handle, const policydb_t * policydb, ocontext_t ** iface, const sepol_iface_t * record) argument
66 iface_to_record(sepol_handle_t * handle, const policydb_t * policydb, ocontext_t * iface, sepol_iface_t ** record) argument
H A Dbooleans.c56 int bool_idx, sepol_bool_t ** record)
73 *record = tmp_record;
77 ERR(handle, "could not convert boolean %s to record", name);
54 bool_to_record(sepol_handle_t * handle, const policydb_t * policydb, int bool_idx, sepol_bool_t ** record) argument
/external/webkit/Source/WebCore/inspector/front-end/
H A DTimelineOverviewPane.js137 function markTimeline(record)
139 if (!(this._showShortEvents || record.isLong()))
141 var percentages = this._overviewCalculator.computeBarGraphPercentages(record);
144 var categoryName = record.category.name;
184 var record = records[i];
185 var positions = this._overviewCalculator.computeBarGraphPercentages(record);
189 var divider = dividerConstructor(record);
368 computeBarGraphPercentages: function(record)
370 var start = (record.startTime - this.minimumBoundary) / this.boundarySpan * 100;
371 var end = (record
[all...]
/external/jmdns/src/javax/jmdns/impl/
H A DHostInfo.java161 public boolean conflictWithRecord(DNSRecord.Address record) { argument
162 DNSRecord.Address hostAddress = this.getDNSAddressRecord(record.getRecordType(), record.isUnique(), DNSConstants.DNS_TTL);
164 return hostAddress.sameType(record) && hostAddress.sameName(record) && (!hostAddress.sameValue(record));
H A DJmDNSImpl.java763 // To get a complete info record we need to retrieve the service, address and the text bytes.
946 final DNSRecord record = (DNSRecord) entry;
947 if (record.getRecordType() == DNSRecordType.TYPE_SRV) {
948 if (record.getKey().endsWith(loType)) {
949 // Do not used the record embedded method for generating event this will not work.
950 // serviceEvents.add(record.getServiceEvent(this));
951 serviceEvents.add(new ServiceEventImpl(this, record.getType(), toUnqualifiedName(record.getType(), record.getName()), record
1232 renewServiceCollector(DNSRecord record) argument
1327 handleRecord(DNSRecord record, long now) argument
[all...]
H A DDNSIncoming.java211 // Add a record, if we were able to create one.
221 // Add a record, if we were able to create one.
231 // Add a record, if we were able to create one.
274 logger.log(Level.SEVERE, "Could not find record type: " + this.print(true));
286 logger.log(Level.SEVERE, "Could not find record type. domain: " + domain + "\n" + this.print(true));
291 logger.log(Level.SEVERE, "Could not find record class. domain: " + domain + " type: " + type + "\n" + this.print(true));
312 logger.log(Level.WARNING, "PTR record of class: " + recordClass + ", there was a problem reading the service name of the answer for domain:" + domain);
354 logger.log(Level.WARNING, "There was a problem reading the OPT record. Ignoring.");
361 logger.log(Level.WARNING, "There was a problem reading the OPT record. Ignoring.");
504 for (DNSRecord record
[all...]
/external/linux-tools-perf/
H A Dcommand-list.txt15 perf-record mainporcelain common
/external/valgrind/main/memcheck/tests/
H A Dmempool.stderr.exp35 10 bytes in 1 blocks are definitely lost in loss record ... of ...
40 10 bytes in 1 blocks are definitely lost in loss record ... of ...
45 20 bytes in 1 blocks are definitely lost in loss record ... of ...
50 48 (32 direct, 16 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
/external/bluetooth/bluedroid/stack/sdp/
H A Dsdp_db.c53 ** Description This function searches for a record that contains the
55 ** beginning, or the previous record found.
57 ** Returns Pointer to the record, or NULL if not found.
64 tSDP_RECORD *p_end = &sdp_cb.server_db.record[sdp_cb.server_db.num_records];
66 /* If NULL, start at the beginning, else start at the first specified record */
68 p_rec = &sdp_cb.server_db.record[0];
73 /* the record contains all the passed UUIDs in it. */
96 /* If any UUID was not found, on to the next record */
101 /* If every UUID was found in the record, return the record */
[all...]
/external/skia/src/core/
H A DSkPicturePlayback.cpp22 SkPicturePlayback::SkPicturePlayback(const SkPictureRecord& record) { argument
26 int bitmaps = record.bitmaps(&bitmapBytes);
27 int matrices = record.matrices(&matricesBytes);
28 int paints = record.paints(&paintBytes);
29 int paths = record.paths(&pathBytes);
30 int pictures = record.pictures(&pictureBytes);
31 int regions = record.regions(&regionBytes);
32 SkDebugf("picture record mem used %zd (stream %zd) ", record.size(),
33 record
[all...]
/external/freetype/src/base/
H A Dbasepic.c31 void FT_Init_Table_raccess_guess_table( ft_raccess_guess_rec* record );
/external/webkit/Source/WebCore/inspector/
H A DTimelineRecordFactory.cpp48 RefPtr<InspectorObject> record = InspectorObject::create(); local
49 record->setNumber("startTime", startTime);
53 record->setArray("stackTrace", stackTrace->buildInspectorArray());
54 return record.release();
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
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 DHandlerTest.java343 public void publish(LogRecord record) { argument
356 public boolean isLoggable(LogRecord record) { argument
357 CallVerificationStack.getInstance().push(record);
/external/linux-tools-perf/util/
H A Dtrace-event-read.c286 struct record *next;
371 struct record *trace_peek_data(int cpu)
373 struct record *data;
471 struct record *trace_read_data(int cpu)
473 struct record *data;
H A Dtrace-event.h160 struct record { struct
166 struct record *trace_peek_data(int cpu);
167 struct record *trace_read_data(int cpu);
/external/llvm/utils/Misc/
H A Dzkill106 record = {}
110 record[field[2]] = field[1](value)
118 record['executable'] = extractExecutable(record['command'])
119 table.append(Struct(**record))
/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/valgrind/tsan/
H A Dts_valgrind.cc389 CallStackRecord &record = call_stack.back(); local
390 Addr cur_top = record.sp;
397 ts_tid, thr->call_stack.size(), record.pc,
398 record.sp, sp,
399 PcToRtnNameAndFilePos(record.pc).c_str());
444 CallStackRecord record; local
445 record.pc = pc_post_call_insn;
446 record.sp = sp_post_call_insn + 4; // sp before call.
447 UpdateCallStack(thr, record.sp);
449 record
497 CallStackRecord &record = call_stack.back(); local
[all...]
/external/jsilver/src/com/google/streamhtmlparser/impl/
H A DGenericParser.java129 record(input);
270 protected void record(char input) { } method in class:GenericParser
/external/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowSolver.h301 void ProcessStmt(const Stmt *S, bool record, dataflow::forward_analysis_tag) { argument
302 if (record) D.getStmtDataMap()[S] = TF.getVal();
306 void ProcessStmt(const Stmt *S, bool record, dataflow::backward_analysis_tag){ argument
308 if (record) D.getStmtDataMap()[S] = TF.getVal();
/external/mesa3d/src/glsl/
H A Dir_rvalue_visitor.cpp101 handle_rvalue(&ir->record);
/external/clang/lib/Sema/
H A DJumpDiagnostics.cpp35 /// GotoScope - This is a record that we use to keep track of all of the
94 // defined scope record for every "goto" and label.
168 // We actually give variables of record type (or array thereof)
175 const CXXRecordDecl *record = 0; local
179 record = ctor->getParent();
182 if (!record->hasTrivialDestructor())
184 else if (!record->isPOD())
190 record = VD->getType()->getBaseElementTypeUnsafe()
198 if (record && !record
[all...]
/external/chromium/chrome/browser/sync/
H A Dprofile_sync_service_bookmark_unittest.cc159 sync_api::SyncManager::ChangeRecord record; local
160 record.action = sync_api::SyncManager::ChangeRecord::ACTION_ADD;
161 record.id = node.GetId();
162 changes_.push_back(record);
196 sync_api::SyncManager::ChangeRecord record; local
197 record.action = sync_api::SyncManager::ChangeRecord::ACTION_DELETE;
198 record.id = id;
202 // children before parents. Thus, we must insert the deletion record
204 changes_.insert(changes_.begin(), record);
249 // Helper function to push an ACTION_UPDATE record ont
[all...]

Completed in 408 milliseconds

123456789