Searched refs:tag (Results 1 - 25 of 963) sorted by relevance

1234567891011>>

/xsrc/external/mit/MesaLib/dist/include/android_stub/log/
H A Dlog_safetynet.h25 #define android_errorWriteLog(tag, subTag) \
26 __android_log_error_write(tag, subTag, -1, NULL, 0)
28 #define android_errorWriteWithInfoLog(tag, subTag, uid, data, dataLen) \
29 __android_log_error_write(tag, subTag, uid, data, dataLen)
31 int __android_log_error_write(int tag, const char* subTag, int32_t uid,
H A Dlog_main.h82 #define android_writeLog(prio, tag, text) __android_log_write(prio, tag, text)
84 #define android_printLog(prio, tag, ...) \
85 __android_log_print(prio, tag, __VA_ARGS__)
87 #define android_vprintLog(prio, cond, tag, ...) \
88 __android_log_vprint(prio, tag, __VA_ARGS__)
94 #define LOG_PRI(priority, tag, ...) android_printLog(priority, tag, __VA_ARGS__)
101 #define LOG_PRI_VA(priority, tag, fmt, args) \
102 android_vprintLog(priority, NULL, tag, fm
[all...]
H A Devent_tag_map.h31 * Open the specified file as an event log tag map.
43 * Look up a tag by index. Returns the tag string & string length, or NULL if
47 unsigned int tag);
54 unsigned int tag);
H A Dlog.h41 * LOG_TAG is the local tag used for the following simplified
43 * before using the other macros to change the tag.
81 int __android_log_bwrite(int32_t tag, const void* payload, size_t len);
82 int __android_log_btwrite(int32_t tag, char type, const void* payload,
84 int __android_log_bswrite(int32_t tag, const char* payload);
86 int __android_log_stats_bwrite(int32_t tag, const void* payload, size_t len);
88 #define android_bWriteLog(tag, payload, len) \
89 __android_log_bwrite(tag, payload, len)
90 #define android_btWriteLog(tag, type, payload, len) \
91 __android_log_btwrite(tag, typ
[all...]
/xsrc/external/mit/MesaLib/dist/src/android_stub/
H A Dlog_stub.cpp5 int __android_log_print(int prio, const char* tag, const char* fmt, ...) argument
10 int __android_log_vprint(int prio, const char* tag, const char* fmt, va_list ap) argument
/xsrc/external/mit/xorg-server.old/dist/hw/dmx/glxProxy/
H A Dglxutil.h38 extern DrawablePtr __glXLookupDrawableByTag(__GLXclientState *cl, GLXContextTag tag);
H A Dglxswap.h38 extern int SGSwapBuffers(__GLXclientState *cl, XID drawId, GLXContextTag tag,
/xsrc/external/mit/libepoxy/dist/.travis/
H A Drun-docker.sh8 --tag "epoxyci" \
/xsrc/external/mit/MesaLib/dist/include/android_stub/cutils/
H A Dtrace.h35 * following ATRACE_TAG_* macros. The trace tag is used to filter tracing in
50 #define ATRACE_TAG_NEVER 0 // This tag is never enabled.
51 #define ATRACE_TAG_ALWAYS (1<<0) // This tag is always enabled.
143 * Test if a given tag is currently enabled.
144 * Returns nonzero if the tag is enabled, otherwise zero.
148 static inline uint64_t atrace_is_tag_enabled(uint64_t tag) argument
150 return atrace_get_enabled_tags() & tag;
158 static inline void atrace_begin(uint64_t tag, const char* name) argument
160 if (CC_UNLIKELY(atrace_is_tag_enabled(tag))) {
171 static inline void atrace_end(uint64_t tag) argument
188 atrace_async_begin(uint64_t tag,const char * name,int32_t cookie) argument
202 atrace_async_end(uint64_t tag,const char * name,int32_t cookie) argument
215 atrace_int(uint64_t tag,const char * name,int32_t value) argument
228 atrace_int64(uint64_t tag,const char * name,int64_t value) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/intel/common/
H A Dintel_log.c65 intel_log(enum intel_log_level level, const char *tag, const char *format, ...) argument
70 intel_log_v(level, tag, format, va);
75 intel_log_v(enum intel_log_level level, const char *tag, const char *format, argument
79 __android_log_vprint(level_to_android(level), tag, format, va);
82 fprintf(stderr, "%s: %s: ", tag, level_to_str(level));
/xsrc/external/mit/MesaLib/dist/include/android_stub/android/
H A Dlog.h32 * - a log tag
35 * The tag normally corresponds to the component that emits the log message,
95 * Writes the constant string `text` to the log, with priority `prio` and tag
96 * `tag`.
98 int __android_log_write(int prio, const char* tag, const char* text);
101 * Writes a formatted string to the log, with priority `prio` and tag `tag`.
105 int __android_log_print(int prio, const char* tag, const char* fmt, ...)
112 int __android_log_vprint(int prio, const char* tag, const char* fmt, va_list ap)
131 void __android_log_assert(const char* cond, const char* tag, cons
198 const char* tag; member in struct:__android_log_message
[all...]
/xsrc/external/mit/MesaLib/dist/src/util/
H A Dlog.c69 mesa_log(enum mesa_log_level level, const char *tag, const char *format, ...) argument
74 mesa_log_v(level, tag, format, va);
79 mesa_log_v(enum mesa_log_level level, const char *tag, const char *format, argument
83 __android_log_vprint(level_to_android(level), tag, format, va);
88 fprintf(stderr, "%s: %s: ", tag, level_to_str(level));
98 _mesa_log_stream_create(enum mesa_log_level level, char *tag) argument
102 stream->tag = tag;
113 mesa_log(stream->level, stream->tag, "%s", stream->msg);
125 mesa_log(stream->level, stream->tag, "
150 _mesa_log_multiline(enum mesa_log_level level,const char * tag,const char * lines) argument
[all...]
H A Dlog.h47 mesa_log(enum mesa_log_level, const char *tag, const char *format, ...);
50 mesa_log_v(enum mesa_log_level, const char *tag, const char *format,
73 const char *tag; member in struct:log_stream
78 struct log_stream *_mesa_log_stream_create(enum mesa_log_level level, char *tag);
85 void _mesa_log_multiline(enum mesa_log_level level, const char *tag, const char *lines);
/xsrc/external/mit/MesaLib.old/dist/doxygen/
H A DMakefile6 %.tag: %.doxy
23 full: $(FULL:.doxy=.tag)
31 subset: $(SUBSET:.doxy=.tag)
36 -rm -rf *.tag
/xsrc/external/mit/xf86-video-nv/dist/src/
H A Dg80_dma.h6 #define G80DmaStart(pNv, tag, size) { \
9 G80DmaNext(pNv, ((size) << 18) | (tag)); \
/xsrc/external/mit/xorg-server.old/dist/glx/
H A Dswap_interval.c49 const GLXContextTag tag = req->contextTag; local in function:DoSwapInterval
56 cx = __glXLookupContextByTag(cl, tag);
59 client->errorValue = tag;
65 client->errorValue = tag;
70 client->errorValue = tag;
/xsrc/external/mit/xorg-server/dist/glx/
H A Dswap_interval.c45 const GLXContextTag tag = req->contextTag; local in function:DoSwapInterval
51 cx = __glXLookupContextByTag(cl, tag);
54 client->errorValue = tag;
60 client->errorValue = tag;
65 client->errorValue = tag;
/xsrc/external/mit/freetype/dist/include/freetype/internal/services/
H A Dsvsfnt.h41 FT_ULong tag,
51 FT_Sfnt_Tag tag );
60 FT_ULong *tag,
/xsrc/external/mit/fontconfig/dist/doc/
H A Dedit-sgml.py76 tag = lines.pop(0).strip() variable
77 # FIXME: this hard codes the tag used in funcs.sgml - we're lazy
78 if tag.startswith('PROTOTYPE'):
85 replacement_set[tag] = text
119 tag = t_line[2:-1] + tag_suffix
122 skip_tag = tag
123 skip_lines = tag not in rep
138 tag = t_line[2:-1] + tag_suffix
141 if loop_tag != tag:
142 sys.exit(f'Loop end but loop tag mismatc
[all...]
/xsrc/external/mit/xkeyboard-config/dist/rules/
H A Dxml2lst.pl88 local ($tag, $text);
105 if ($tag =~ /^\/(.*)/) { # close tag
107 } elsif ($tag =~ /^([^\/]*)\/$/) {
110 if (defined ($node = open_tag($parent, $tag))) {
115 undef $tag;
118 if (defined $tag) {
119 $tag .= ' '. $token;
121 $tag = $token;
142 local ($parent_node, $tag,
[all...]
/xsrc/external/mit/xcb-proto/dist/xcbgen/
H A Dexpr.py69 if elt.tag == 'list':
74 elif elt.tag == 'fieldref':
78 elif elt.tag == 'paramref':
82 elif elt.tag == 'op':
93 elif elt.tag == 'unop':
100 elif elt.tag == 'value':
104 elif elt.tag == 'popcount':
110 elif elt.tag == 'enumref':
114 elif elt.tag == 'sumof':
124 elif elt.tag
[all...]
/xsrc/external/mit/MesaLib.old/dist/bin/
H A Dget-pick-list.sh26 # Helper to handle various mistypos of the fixes tag.
27 # The tag string itself is passed as argument and normalised within.
122 tag=fixes
124 tag=brokenby
126 tag=revert
128 tag=stable
130 tag=typod
135 case "$tag" in
145 printf "[ %8s ] " "$tag"
/xsrc/external/mit/libxcb/dist/src/
H A Dxcb_ext.c40 enum lazy_reply_tag tag; member in struct:lazyreply
75 if(data && data->tag == LAZY_NONE)
78 data->tag = LAZY_COOKIE;
96 if(data && data->tag == LAZY_COOKIE)
98 data->tag = LAZY_FORCED;
128 if(c->ext.extensions[c->ext.extensions_size].tag == LAZY_FORCED)
/xsrc/external/mit/xorg-server.old/dist/hw/xfree86/os-support/bus/
H A DPci.h138 #define PCI_TAG_NO_DOMAIN(tag) ((tag) & 0x00ffff00u)
/xsrc/external/mit/xorg-server/dist/hw/xfree86/os-support/bus/
H A DPci.h136 #define PCI_TAG_NO_DOMAIN(tag) ((tag) & 0x00ffff00u)

Completed in 15 milliseconds

1234567891011>>