/frameworks/base/services/java/com/android/server/ |
NotificationManagerService.java | 486 ToastRecord record; local 491 record = mToastQueue.get(index); 492 record.update(duration); 494 record = new ToastRecord(callingPid, pkg, callback, duration); 495 mToastQueue.add(record); 536 ToastRecord record = mToastQueue.get(0); local 537 while (record != null) { 538 if (DBG) Slog.d(TAG, "Show pkg=" + record.pkg + " callback=" + record.callback); 540 record.callback.show() 562 ToastRecord record = mToastQueue.get(index); local [all...] |
/dalvik/libcore/logging/src/main/java/java/util/logging/ |
Handler.java | 184 * @param record 185 * the log record to be logged; {@code null} records are ignored. 187 public abstract void publish(LogRecord record); 242 * Determines whether the supplied log record needs to be logged. The 245 * @param record 246 * the log record to be checked. 247 * @return {@code true} if the supplied log record needs to be logged, 250 public boolean isLoggable(LogRecord record) { 251 if (null == record) { 256 } else if (record.getLevel().intValue() >= this.level.intValue()) [all...] |
/external/webkit/WebCore/inspector/ |
TimelineRecordFactory.cpp | 48 ScriptObject record = frontend->newScriptObject(); local 49 record.set("startTime", startTime); 50 return record;
|
/external/skia/include/core/ |
SkFlattenable.h | 129 uint32_t record(SkRefCnt* ref) { function in class:SkRefCntRecorder 152 uint32_t record(SkFlattenable::Factory fact) { function in class:SkFactoryRecorder
|
/external/skia/src/core/ |
SkPicturePlayback.cpp | 15 SkPicturePlayback::SkPicturePlayback(const SkPictureRecord& record) { 19 int bitmaps = record.bitmaps(&bitmapBytes); 20 int matrices = record.matrices(&matricesBytes); 21 int paints = record.paints(&paintBytes); 22 int paths = record.paths(&pathBytes); 23 int pictures = record.pictures(&pictureBytes); 24 int regions = record.regions(®ionBytes); 25 SkDebugf("picture record mem used %zd (stream %zd) ", record.size(), 26 record.streamlen()) [all...] |
SkFlattenable.cpp | 153 this->write32(fTFRecorder->record(obj)); 161 this->write32(fRCRecorder->record(obj)); 172 this->write32(fFactoryRecorder->record(factory)); 180 // record the current size, so we can subtract after the object writes. 185 // record the obj's size
|
/external/bluetooth/bluez/serial/ |
proxy.c | 102 uint32_t record_id; /* Service record id */ 181 sdp_record_t *record; local 184 record = sdp_record_alloc(); 185 if (!record) 190 sdp_set_browse_groups(record, root); 196 sdp_set_service_classes(record, svclass_id); 202 sdp_set_profile_descs(record, profiles); 216 sdp_set_access_protos(record, aproto); 218 add_lang_attr(record); 220 sdp_set_info_attr(record, "Serial Proxy", NULL, "Serial Proxy") 518 sdp_record_t *record; local [all...] |
/external/webkit/JavaScriptCore/parser/ |
Parser.cpp | 76 android::TimeCounter::record(android::TimeCounter::JavaScriptParseTimeCounter, __FUNCTION__);
|
/external/webkit/WebKit/android/ |
TimeCounter.h | 67 static void record(enum Type type, const char* functionName);
|
/external/v8/src/ |
log-utils.cc | 398 bool LogRecordCompressor::Store(const Vector<const char>& record) { 399 // Check if the record is the same as the last stored one. 402 if (record.length() == curr.length() 403 && strncmp(record.start(), curr.start(), record.length()) == 0) { 410 Vector<char> record_copy = Vector<char>::New(record.length()); 411 memcpy(record_copy.start(), record.start(), record.length()); 437 // We're moving backwards until we reach the current record. 462 // Record compression results [all...] |
log-utils.h | 192 // Fills vector with a compressed version of the previous record. 193 // Returns false if there is no previous record. 196 // Stores a record if it differs from a previous one (or there's no previous). 197 // Returns true, if the record has been stored. 198 bool Store(const Vector<const char>& record); 202 // the previous record. Since there is no place for precedessors of a previous 203 // record, it can't be compressed at all.
|
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
UsimPhoneBookManager.java | 179 // that appear in the TLV object indicated by Tag 'A9' in the reference file record. 183 byte[] record = null; 185 record = mIapFileRecord.get(i); 187 Log.e(LOG_TAG, "Error: Improper ICC card: No IAP record for ADN, continuing"); 190 int recNum = record[mEmailTagNumberInIap]; 194 // SIM record numbers are 1 based 200 // might be a record with only email 243 Log.e(LOG_TAG, "Error: Improper ICC card: No email record for ADN, continuing"); 258 // SIM record numbers are 1 based. 264 // SIM record numbers are 1 based [all...] |
SimSmsInterfaceManager.java | 101 * @param index record index of message to update 121 // manipulating the SIM record 124 byte[] record = makeSmsRecordData(status, pdu); 127 index, record, null, response);
|
/external/bluetooth/bluez/audio/ |
a2dp.c | 950 sdp_record_t *record; local 954 record = sdp_record_alloc(); 955 if (!record) 960 sdp_set_browse_groups(record, root); 967 sdp_set_service_classes(record, svclass_id); 972 sdp_set_profile_descs(record, pfseq); 987 sdp_set_access_protos(record, aproto); 990 sdp_attr_add(record, SDP_ATTR_SUPPORTED_FEATURES, features); 993 sdp_set_info_attr(record, "Audio Source", 0, 0); 995 sdp_set_info_attr(record, "Audio Sink", 0, 0) 1016 sdp_record_t *record; local [all...] |
headset.c | 1350 const sdp_record_t *record, uint16_t svc) 1355 if (sdp_get_access_protos(record, &protos) < 0) { 1356 error("Unable to get access protos from headset record"); 1366 error("Unable to get RFCOMM channel from Headset record"); 1373 headset->hfp_handle = record->handle; 1376 headset->hsp_handle = record->handle; 1388 sdp_record_t *record = NULL; local 1394 error("Unable to get service record: %s (%d)", 1410 record = r->data; 1412 if (sdp_get_service_classes(record, &classes) < 0) 2049 const sdp_record_t *record; local 2153 const sdp_record_t *record; local [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/ |
RuimSmsInterfaceManager.java | 104 * @param index record index of message to update 124 // manipulating the RUIM record 127 byte[] record = makeSmsRecordData(status, pdu); 129 IccConstants.EF_SMS, index, record, null, response);
|
/ndk/build/core/ |
add-platform.mk | 19 # And record them in NDK_PLATFORM_$(platform)_ABIS 28 # Record the sysroots for each supported ABI
|
/external/strace/ |
strace.spec | 15 received by a running process. Strace can print a record of each 30 received by a running process. Strace can print a record of each
|
/external/v8/test/mjsunit/ |
array-reduce.js | 51 var record = []; 57 if (record.length > 0) { 58 var prevRecord = record[record.length - 1]; 66 record.push(args); 69 f.record = record; 89 var calls = rec.record;
|
/external/v8/tools/ |
logreader.js | 161 * Processes stack record. 190 * @param {!Object} dispatch Dispatch record. 199 * Does a dispatch of a log record. 201 * @param {Array.<string>} fields Log record. 279 * Processes alias log record. Adds an alias to a corresponding map. 325 * Processes repeat log record. Expands it according to calls count and
|
/dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
LogRecordTest.java | 688 public void publish(LogRecord record) { 689 className = record.getSourceClassName(); 690 methodName = record.getSourceMethodName(); 733 public void log(LogRecord record) { 734 if (isLoggable(record.getLevel())) { 739 ha[i].publish(record); 747 ha[i].publish(record);
|
/sdk/traceview/src/com/android/traceview/ |
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...] |
/external/opencore/android/author/ |
android_audio_input.cpp | 1139 * record = new AudioRecord( local [all...] |
/development/tools/monkeyrunner/src/com/android/monkeyrunner/ |
MonkeyRunner.java | 227 // Record what device we are running on 385 * @param record whether to put the command in the xml file that stores test outputs 387 private static boolean sendMonkeyEvent(String command, Boolean print, Boolean record) throws IOException { 391 if (record) 404 if (record) 422 if (record) 431 * Record the command in the xml file 436 if (monkeyRecorder != null) { // don't record setup junk 443 * Record the response in the xml file 452 * Record the response and the filename in the xml file, store the file (to be zipped up later [all...] |
/external/bluetooth/bluez/common/ |
sdp-xml.c | 397 * Will convert the sdp record to XML. The appender and data can be used 398 * to control where to output the record (e.g. file or a data buffer). The 412 appender(data, "<record>\n"); 415 appender(data, "</record>\n"); 446 sdp_data_t *sdp_xml_parse_uuid(const char *data, sdp_record_t *record) 477 if (record && ret) 478 sdp_pattern_add_uuid(record, &ret->val.uuid); 763 sdp_record_t *record) 790 return sdp_xml_parse_uuid(data, record);
|