HomeSort by relevance Sort by last modified time
    Searched full:records (Results 451 - 475 of 2236) sorted by null

<<11121314151617181920>>

  /external/openssh/
sshlogin.c 122 * Records that the user has logged in. I wish these parts of operating
154 /* Records that the user has logged out. */
  /external/smack/src/org/xbill/DNS/
NSEC3Record.java 13 * records exist for this name. The presence of this record in a response
16 * This replaces the NSEC and NXT records, when used.
Master.java 11 * state and used when parsing future records.
226 Type.string(currentType) + " records");
400 * expanded or not, the specifications for generated records are available
  /frameworks/av/media/libmediaplayerservice/
StagefrightPlayer.cpp 190 const media::Metadata::Filter& ids, Parcel *records) {
195 Metadata metadata(records);
  /frameworks/native/opengl/specs/
EGL_ANDROID_recordable.txt 38 can be used to create an EGLSurface. One implementation, which records the
43 rendering to an ANativeWindow that records images to a video.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/
log.py 61 The initial set of ADD_INFO records do not pass through this
147 # contain all the DEFINE_FUNC records needed to allow the
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/
log.py 61 The initial set of ADD_INFO records do not pass through this
147 # contain all the DEFINE_FUNC records needed to allow the
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TimelinePanel.js 93 // | | Records | |
126 // Create records sidebar as a top memory splitter child.
141 // Create records list in the records sidebar.
143 this._sidebarView.sidebarElement.createChild("div", "timeline-records-title").textContent = WebInspector.UIString("RECORDS");
144 this._sidebarListElement = this._sidebarView.sidebarElement.createChild("div", "timeline-records-list");
146 // Create grid in the records main area.
268 this.recordsCounter = new WebInspector.StatusBarText("", "timeline-records-counter");
570 durationOption.title = WebInspector.UIString("Show all records");
    [all...]
  /external/llvm/utils/TableGen/
DFAPacketizerEmitter.cpp 41 RecordKeeper &Records;
267 allInsnClasses(), Records(R) {}
359 Records.getAllDerivedDefinitions("ProcessorItineraries");
413 Records.getAllDerivedDefinitions("ProcessorItineraries");
430 Records.getAllDerivedDefinitions("InstrItinClass").size();
CallingConvEmitter.cpp 24 RecordKeeper &Records;
26 explicit CallingConvEmitter(RecordKeeper &R) : Records(R) {}
39 std::vector<Record*> CCs = Records.getAllDerivedDefinitions("CallingConv");
OptParserEmitter.cpp 103 void EmitOptParser(RecordKeeper &Records, raw_ostream &OS) {
106 Records.getAllDerivedDefinitions("OptionGroup");
107 std::vector<Record*> Opts = Records.getAllDerivedDefinitions("Option");
  /external/valgrind/main/memcheck/
mc_leakcheck.c 145 // Here's the relevant loss records printed for a full check (each block is
163 // but it means that AAA is being counted twice in the loss records. (It's
469 // Records chunks that are currently being processed. Each element in the
    [all...]
  /ndk/build/awk/
xml.awk 180 # will be translated into the following successive 'records':
187 # Note that the '>' is never part of the records and thus will not be matched.
192 # Newlines in the original input are kept in the records as-is.
213 # and will then span multiple records, i.e. something like:
217 # will be decomposed into two records:
  /development/samples/NotePad/src/com/example/android/notepad/
NotePadProvider.java 306 * object is returned; otherwise, the cursor variable contains null. If no records were
428 null, // No WHERE clause, get all matching records
572 * Deletes records from the database. If the incoming URI matches the note ID URI pattern,
574 * a set of records. The record or records must also match the input selection criteria
651 * Updates records in the database. The column names specified by the keys in the values map
654 * otherwise, it updates a set of records. The record or records must match the input
660 * @param where An SQL "WHERE" clause that selects records based on their column values. If this
661 * is null, then all records that match the URI pattern are selected
    [all...]
  /development/samples/NotePad/tests/src/com/example/android/notepad/
NotePadProviderTest.java 420 * a dataset of records.
445 // If there are no records in the table, the returned cursor from a query should be empty.
449 null, // no selection criteria, get all records
454 // Asserts that the returned cursor contains no records
458 // If the table contains records, the returned cursor from a query should contain records.
467 null, // no selection criteria, get all records
482 null, // no selection columns, get all the records
560 null, // no selection criteria, get all the records in the table
569 // Tests that a query against a table containing records returns a single record whose I
    [all...]
  /external/bluetooth/bluedroid/stack/sdp/
sdp_db.c 72 /* Look through the records. The spec says that a match occurs if */
106 /* If here, no more records found */
167 /* Look through the records for the caller's handle */
311 else SDP_TRACE_ERROR1("SDP_CreateRecord fail, exceed maximum records:%d", SDP_MAX_RECORDS);
321 ** Description This function is called to add a record (or all records)
325 ** If a record handle of 0 is passed, all records are deleted.
338 /* Delete all records in the database */
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
TestActivity.java 206 * "query " + contentUri1 +" get " + c.getCount()+" records");
259 Integer records = null;
261 records = Integer.parseInt(mInsertView.getText().toString().trim());
262 Log.v(Constants.TAG, "parseInt " + records);
264 if (records == null) {
265 records = 1;
267 for (int i = 0; i < records; i++) {
  /development/scripts/
symbol.py 208 records = []
219 records.append((symbol, location))
226 result[addr] = records
  /external/bluetooth/bluedroid/bta/ag/
bta_ag_sdp.c 209 ** Description Create SDP records for registered services.
247 ** Description Delete SDP records for any registered services.
328 /* loop through all records we found */
bta_ag_act.c 133 /* create SDP records */
150 ** Description This function removes the sdp records, closes the RFCOMM
162 /* remove sdp records */
187 /* remove sdp records */
  /external/bluetooth/bluedroid/btif/src/
btif_sock_sdp.c 461 Bluetooth Socket API relies on having preregistered bluez sdp records for HSAG, HFAG, OPP & PBAP
466 To do this we will check the UUID for the requested service and mimic the SDP records of bluez
467 upon reception. See functions add_opush() and add_pbap() in sdptool.c for actual records
  /external/chromium_org/third_party/leveldatabase/src/db/
log_test.cc 225 {10000, // Two sizable records in first block
419 // Consider two fragmented records:
424 // Write records that span two blocks
  /external/chromium_org/base/debug/
trace_event.h 219 // Records a pair of begin and end events called "name" for the current
236 // Records events like TRACE_EVENT2 but uses |memory_tag| for memory tracing.
286 // Records a single event called "name" immediately, with 0, 1 or 2
353 // Records a single BEGIN event called "name" immediately, with 0, 1 or 2
398 // Records a single END event for "name" immediately. If the category
442 // Records the value of a counter called "name" immediately. Value
455 // Records the values of a multi-parted counter called "name" immediately.
473 // Records the value of a counter called "name" immediately. Value
490 // Records the values of a multi-parted counter called "name" immediately.
513 // Records a single ASYNC_BEGIN event called "name" immediately, with 0, 1 or
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
CursorWrapperTest.java 90 // Add two records into the table.
100 // Delete previous two records which have been added just now.
108 // Continue to delete all the records
209 // There are totally 2 records.
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
trace-event-listener.rb 8 A listener that simply records text representations of the events.

Completed in 1277 milliseconds

<<11121314151617181920>>