HomeSort by relevance Sort by last modified time
    Searched refs:Record (Results 1 - 25 of 30) sorted by null

1 2

  /external/libnfc-nxp/src/
phFriNfc_NdefRecord.c 19 * \brief NFC Ndef Record component file.
32 * \name \name NDEF Record Tools Header
52 * Get a specific NDEF record from the data, provided by the caller. The data is a buffer holding
63 * \param[in] IsChunked This boolean tells the user that the record of a certain position within
64 * an array has the CHUNKED flag set (is a partial record). The number
67 * \param[in,out] NumberOfRawRecords Length of the Record pointer array. The caller has to provide
159 /* Check the First Record(MB = 0) for TNF = 0x06(Unchanged) */
170 /* First Record i.e., MB = 1, TNF != 0x05 and TypeLength = 0 */
191 /* For Each Record Check whether it contains the ME bit set and CF bit Set
228 short or normal record */
    [all...]
  /hardware/ril/mock-ril/src/cpp/
worker.h 107 struct Record {
115 bool operator() (const struct Record* lhs, const struct Record* rhs) const {
120 std::list<struct Record *> q_; // list of records to be processed
121 std::list<struct Record *> free_list_; // list of records that have been released
122 std::priority_queue<struct Record *, std::vector<struct Record *>, record_compare> delayed_q_;
127 struct Record *obtain_record(void *p, int delay_in_ms);
129 void release_record(struct Record *r);
worker.cpp 154 struct WorkerQueue::Record *r = wq->delayed_q_.top();
165 struct WorkerQueue::Record *r = wq->delayed_q_.top();
179 struct WorkerQueue::Record *r = wq->q_.front();
204 Record *r;
233 * Obtain a record from free_list if it is not empty, fill in the record with provided
236 struct WorkerQueue::Record *WorkerQueue::obtain_record(void *p, int delay_in_ms) {
237 struct Record *r;
239 r = new Record();
256 * release a record and insert into the front of the free_lis
    [all...]
  /frameworks/base/tools/preload/
Compile.java 27 * to measure and record the memory usage of each class.
41 List<Record> records = new ArrayList<Record>();
53 records.add(new Record(clipped, lineNumber));
61 for (Record record : records) {
62 root.indexProcess(record);
65 for (Record record : records) {
66 root.indexClassOperation(record);
    [all...]
Android.mk 15 Record.java \
Record.java 20 class Record {
64 /** Type of record. */
70 /** Record time (ns). */
79 Record(String line, int lineNum) {
Root.java 54 void indexClassOperation(Record record) {
55 Proc process = processes.get(record.pid);
59 if (record.processName.equals("dexopt")) {
63 String name = record.className;
67 switch (record.type) {
72 name, record.classLoader == 0);
84 o = process.endOperation(record.tid, record.className,
85 loadedClass, record.time)
    [all...]
  /sdk/traceview/src/com/android/traceview/
QtraceReader.java 37 public ArrayList<TimeLineView.Record> getThreadTimeRecords() {
TraceReader.java 32 public ArrayList<TimeLineView.Record> getThreadTimeRecords() {
DmTraceReader.java 198 // record so that we can do something reasonable with the global
499 * timeline for each thread. Each record is a pair: (row, block) where: row:
504 public ArrayList<TimeLineView.Record> getThreadTimeRecords() {
505 TimeLineView.Record record; local
506 ArrayList<TimeLineView.Record> timeRecs;
507 timeRecs = new ArrayList<TimeLineView.Record>();
517 record = new TimeLineView.Record(threadData, call);
518 timeRecs.add(record);
    [all...]
TimeLineView.java 127 public static class Record {
131 public Record(Row row, Block block) {
352 public void setData(ArrayList<Record> records) {
354 records = new ArrayList<Record>();
358 for (Record r : records) {
370 Collections.sort(records, new Comparator<Record>() {
371 public int compare(Record r1, Record r2) {
392 // so the minimum start time is the start time of the first record.
400 for (Record rec : records)
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
DiskCache.java 42 private LongSparseArray<Record> mIndexMap;
65 // Look up the record for the given key.
66 Record record = null; local
68 record = mIndexMap.get(key);
70 if (record != null) {
72 if (record.timestamp < timestamp) {
73 Log.i(TAG, "File has been updated to " + timestamp + " since the last time " + record.timestamp
78 RandomAccessFile chunkFile = getChunkFile(record.chunk);
80 byte[] data = new byte[record.size]
93 Record record = null; local
110 Record record = null; local
310 final Record record = mIndexMap.valueAt(i); local
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_MONITOR_ENTER.S 13 mov r3, #0 @ Record that we're not returning
TEMPLATE_MONITOR_ENTER_DEBUG.S 13 mov r3, #0 @ Record that we're not returning
  /frameworks/base/services/java/com/android/server/
TelephonyRegistry.java 54 private static class Record {
66 private final ArrayList<Record> mRecords = new ArrayList();
136 Record r = null;
146 r = new Record();
240 Record r = mRecords.get(i);
261 Record r = mRecords.get(i);
277 Record r = mRecords.get(i);
303 Record r = mRecords.get(i);
323 Record r = mRecords.get(i);
342 Record r = mRecords.get(i)
    [all...]
  /external/chromium/base/
stats_counters.h 165 // the scope of the StatsCounterTimer. On destruction, it will record
184 // Stop the timer and record the results.
189 Record();
204 void Record() {
  /ndk/build/core/
add-platform.mk 19 # And record them in NDK_PLATFORM_$(platform)_ABIS
28 # Record the sysroots for each supported ABI
add-application.mk 16 # this script is used to record an application definition in the
203 # Record all app-specific variable definitions
208 # Record the Application.mk for debugging
  /external/webkit/WebCore/loader/appcache/
ApplicationCacheStorage.cpp 59 m_records.append(Record(resource, storageID));
68 class Record {
70 Record() : m_resource(0), m_storageID(0) { }
71 Record(T* resource, unsigned storageID) : m_resource(resource), m_storageID(storageID) { }
83 Vector<Record> m_records;
    [all...]
  /dalvik/vm/compiler/template/out/
CompilerTemplateAsm-armv5te-vfp.S     [all...]
CompilerTemplateAsm-armv7-a-neon.S     [all...]
CompilerTemplateAsm-armv7-a.S     [all...]
CompilerTemplateAsm-armv5te.S     [all...]
  /hardware/msm7k/libaudio-qsd8k/
AudioHardware.h 230 status_t doAudience_A1026_Control(int Mode, bool Record, uint32_t Routes);
AudioHardware.cpp     [all...]

Completed in 275 milliseconds

1 2