Searched defs:tag (Results 1 - 25 of 139) sorted by relevance

123456

/frameworks/base/media/libstagefright/codecs/aacdec/
H A Ds_ch_info.h77 Int tag; /* element tag */ member in struct:__anon552
H A Dget_prog_config.cpp86 encountered it is saved. Or, if the tag of the PCE read matches the tag of
138 RETURNING( tag = returnValue )
347 pVars->current_program = tag;
351 IF (tag == pVars->current_program)
365 tag = pVars->prog_config.front.ele_tag[0],
458 UInt tag; local
467 * The tag is used at the very end to see if this PCE is
482 tag =
698 * its tag numbe
[all...]
H A Dset_mc_info.cpp48 tag = variable that stores the element instance tag of the
79 pMC_Info->ch_info.tag contents updated with the value of decoded
80 channel element tag
103 structure MC_Info stores the number of channels, channel element tag.
163 pCh_Info->tag = tag;
174 pCh_Info->tag = tag;
256 const Int tag, /* alway
252 set_mc_info( MC_Info *pMC_Info, const tMP4AudioObjectType audioObjectType, const Int sampling_rate_idx, const Int tag, const Int is_cpe, FrameInfo *pWinSeqInfo[], Int sfbwidth128[] ) argument
[all...]
/frameworks/base/core/java/android/util/
H A DEventLogTags.java38 Description(int tag, String name) { argument
39 mTag = tag;
50 public Description get(int tag) { return null; } argument
H A DLogPrinter.java30 * and tag.
38 * @param tag A string tag to associate with each printed log statement.
40 public LogPrinter(int priority, String tag) { argument
42 mTag = tag;
50 public LogPrinter(int priority, String tag, int buffer) { argument
52 mTag = tag;
H A DSlog.java32 public static int v(String tag, String msg) { argument
33 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag, msg);
36 public static int v(String tag, String msg, Throwable tr) { argument
37 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag,
41 public static int d(String tag, String msg) { argument
42 return Log.println_native(Log.LOG_ID_SYSTEM, Log.DEBUG, tag, msg);
45 public static int d(String tag, String msg, Throwable tr) { argument
46 return Log.println_native(Log.LOG_ID_SYSTEM, Log.DEBUG, tag,
50 public static int i(String tag, String msg) { argument
51 return Log.println_native(Log.LOG_ID_SYSTEM, Log.INFO, tag, ms
54 i(String tag, String msg, Throwable tr) argument
59 w(String tag, String msg) argument
63 w(String tag, String msg, Throwable tr) argument
68 w(String tag, Throwable tr) argument
72 e(String tag, String msg) argument
76 e(String tag, String msg, Throwable tr) argument
81 println(int priority, String tag, String msg) argument
[all...]
H A DTimingLogger.java51 * The Log tag to use for checking Log.isLoggable and for
70 * the specific tag. If the Log.isLoggable is not enabled to at
71 * least the Log.VERBOSE level for that tag at creation time then
73 * @param tag the log tag to use while logging the timings
76 public TimingLogger(String tag, String label) { argument
77 reset(tag, label);
82 * the specific tag. If the Log.isLoggable is not enabled to at
83 * least the Log.VERBOSE level for that tag at creation time then
85 * @param tag th
88 reset(String tag, String label) argument
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DAndroidPrintStream.java29 private final String tag; field in class:AndroidPrintStream
35 * @param tag to log
37 public AndroidPrintStream(int priority, String tag) { argument
38 if (tag == null) {
39 throw new NullPointerException("tag");
43 this.tag = tag;
47 Log.println(priority, tag, line);
/frameworks/base/core/jni/android/graphics/
H A DNinePatchPeeker.cpp23 bool NinePatchPeeker::peek(const char tag[], const void* data, size_t length) { argument
24 if (strcmp("npTc", tag) == 0 && length >= sizeof(Res_png_9patch)) {
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DGridLayoutTest.java49 public String tag() { method in class:GridLayoutTest
H A DLinearLayoutTest.java46 public String tag() { method in class:LinearLayoutTest
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DLog_Delegate.java43 static int println_native(int bufID, int priority, String tag, String msgs) { argument
44 String prefix = priorityChar(priority) + "/" + tag + ": ";
/frameworks/compile/libbcc/helper/
H A DDebugHelper.c11 int __android_log_print(int prio, const char *tag, const char *fmt, ...) { argument
19 return __android_log_write(prio, tag, buf);
22 int __android_log_write(int prio, const char *tag, const char *msg) { argument
23 if (!tag) {
24 tag = "";
27 return fprintf(stderr, "[%s] %s", tag, msg);
/frameworks/base/core/java/android/app/
H A DNotificationManager.java43 * {@link String} tag parameter, which may be {@code null}. These parameters
44 * are used to form a pair (tag, id), or ({@code null}, id) if tag is
47 * of the notify methods with a (tag, id) pair that is currently active and
50 * be replaced with the new one. This is also the same tag and id you pass
108 * the same tag and id has already been posted by your application and has not yet been
111 * @param tag A string identifier for this notification. May be {@code null}.
112 * @param id An identifier for this notification. The pair (tag, id) must be unique
117 public void notify(String tag, int id, Notification notification) argument
124 service.enqueueNotificationWithTag(pkg, tag, i
147 cancel(String tag, int id) argument
[all...]
/frameworks/base/core/java/android/nfc/tech/
H A DNdefFormatable.java51 * Get an instance of {@link NdefFormatable} for the given tag.
54 * This indicates the tag is not NDEF formatable by this Android device.
56 * @param tag an NDEF formatable tag
59 public static NdefFormatable get(Tag tag) { argument
60 if (!tag.hasTech(TagTechnology.NDEF_FORMATABLE)) return null;
62 return new NdefFormatable(tag);
72 public NdefFormatable(Tag tag) throws RemoteException { argument
73 super(tag, TagTechnology.NDEF_FORMATABLE);
77 * Format a tag a
[all...]
H A DNfcB.java45 * Get an instance of {@link NfcB} for the given tag.
47 * This indicates the tag does not support NFC-B.
50 * @param tag an NFC-B compatible tag
53 public static NfcB get(Tag tag) { argument
54 if (!tag.hasTech(TagTechnology.NFC_B)) return null;
56 return new NfcB(tag);
63 public NfcB(Tag tag) throws RemoteException { argument
64 super(tag, TagTechnology.NFC_B);
65 Bundle extras = tag
[all...]
H A DNfcV.java46 * Get an instance of {@link NfcV} for the given tag.
48 * This indicates the tag does not support NFC-V.
51 * @param tag an NFC-V compatible tag
54 public static NfcV get(Tag tag) { argument
55 if (!tag.hasTech(TagTechnology.NFC_V)) return null;
57 return new NfcV(tag);
64 public NfcV(Tag tag) throws RemoteException { argument
65 super(tag, TagTechnology.NFC_V);
66 Bundle extras = tag
[all...]
/frameworks/base/core/java/android/os/
H A DLatencyTimer.java60 * @param tag string used for printing out the result. This should be unique at each point of
64 public void sample(String tag, long delta) { argument
65 long[] array = getArray(tag);
76 Log.i(TAG, tag + " average = " + totalDelta / mSampleSize);
80 private long[] getArray(String tag) { argument
81 long[] data = store.get(tag);
84 data = store.get(tag);
87 store.put(tag, data);
/frameworks/base/core/java/com/android/internal/logging/
H A DAndroidHandler.java34 * the log tag. Only the log levels need to be converted appropriately. For
126 String tag = DalvikLogging.loggerNameToTag(record.getLoggerName());
127 if (!Log.isLoggable(tag, level)) {
133 Log.println(level, tag, message);
139 public void publish(Logger source, String tag, Level level, String message) { argument
142 if (!Log.isLoggable(tag, priority)) {
147 Log.println(priority, tag, message);
/frameworks/base/libs/ui/
H A DGraphicLog.cpp55 void GraphicLog::logImpl(int32_t tag, int32_t buffer) argument
63 android_bWriteLog(tag, scratch, sizeof(scratch));
66 void GraphicLog::logImpl(int32_t tag, int32_t identity, int32_t buffer) argument
75 android_bWriteLog(tag, scratch, sizeof(scratch));
/frameworks/base/opengl/libs/EGL/
H A DLoader.h58 entry_t(int dpy, int impl, const char* tag);
61 String8 tag; member in struct:android::Loader::entry_t
77 void *load_driver(const char* kind, const char *tag, egl_connection_t* cnx, uint32_t mask);
/frameworks/base/services/powermanager/
H A DIPowerManager.cpp44 virtual status_t acquireWakeLock(int flags, const sp<IBinder>& lock, const String16& tag) argument
51 data.writeString16(tag);
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DPowerTest.java58 protected String tag() { method in class:PowerTest
H A DStatusBarTest.java62 protected String tag() { method in class:StatusBarTest
H A DToastTest.java48 protected String tag() { method in class:ToastTest

Completed in 278 milliseconds

123456