Home
last modified time | relevance | path

Searched refs:tag (Results 1 – 25 of 199) sorted by relevance

12345678

/device/generic/goldfish-opengl/android-emu/android/utils/
Ddebug.h84 #define VERBOSE_ENABLE(tag) \ argument
85 android_verbose |= (1ULL << VERBOSE_##tag)
87 #define VERBOSE_DISABLE(tag) \ argument
88 android_verbose &= (1ULL << VERBOSE_##tag)
90 #define VERBOSE_CHECK(tag) \ argument
91 ((android_verbose & (1ULL << VERBOSE_##tag)) != 0)
96 #define VERBOSE_PRINT(tag,...) \ argument
97 do { if (VERBOSE_CHECK(tag)) dprint(__VA_ARGS__); } while (0)
100 #define VERBOSE_DPRINT(tag,format,...) \ argument
101 do { if (VERBOSE_CHECK(tag)) { \
[all …]
/device/linaro/hikey/hifi/xaf/host-apf/include/
Dxf-debug.h70 #define __xf_stub(tag, line) __xf_stub2(tag, line) argument
71 #define __xf_stub2(tag, line) typedef int __xf_##tag##_##line argument
93 #define TRACE_TAG(tag, on) enum { __xf_trace_##tag = on } argument
96 #define TRACE_CFG(tag) (__xf_trace_##tag) argument
99 #define TRACE(tag, fmt, ...) (void)(__xf_trace_##tag ? __xf_trace(tag, __xf_format##fmt,… argument
106 #define __xf_trace(tag, fmt, ...) \ argument
107 ({ __attribute__((unused)) const char *__xf_tag = #tag; xf_trace(fmt, ## __VA_ARGS__); })
134 #define TRACE_TAG(tag, on) __xf_stub(trace_##tag, __LINE__) argument
135 #define TRACE(tag, fmt, ...) (void)0 argument
136 #define __xf_trace(tag, fmt, ...) (void)0 argument
/device/linaro/hikey/hifi/xaf/hifi-dpf/include/
Dxf-debug.h91 #define __xf_stub(tag, line) __xf_stub2(tag, line) argument
92 #define __xf_stub2(tag, line) typedef int __xf_##tag##_##line argument
115 #define TRACE_TAG(tag, on) enum { __xf_trace_##tag = on } argument
118 #define TRACE_CFG(tag) (__xf_trace_##tag) argument
121 #define TRACE(tag, fmt, ...) (void)(__xf_trace_##tag ? __xf_trace(tag, __xf_format##fmt,… argument
128 #define __xf_trace(tag, fmt, ...) \ argument
129 ({ __attribute__((unused)) const char *__xf_tag = #tag; DSP_TRACE(fmt, ## __VA_ARGS__); })
156 #define TRACE_TAG(tag, on) __xf_stub(trace_##tag, __LINE__) argument
157 #define TRACE_CFG(tag) 0 argument
158 #define TRACE(tag, fmt, ...) (void)0 argument
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/etree/
DElementTree.py106 def find(self, element, tag, namespaces=None): argument
108 if elem.tag == tag:
111 def findtext(self, element, tag, default=None, namespaces=None): argument
112 elem = self.find(element, tag)
116 def iterfind(self, element, tag, namespaces=None): argument
117 if tag[:3] == ".//":
118 for elem in element.iter(tag[3:]):
121 if elem.tag == tag:
123 def findall(self, element, tag, namespaces=None): argument
124 return list(self.iterfind(element, tag, namespaces))
[all …]
DElementPath.py75 tag = token[1]
76 if tag and tag[0] != "{" and ":" in tag:
78 prefix, uri = tag.split(":", 1)
97 tag = token[1]
101 if e.tag == tag:
121 tag = "*"
123 tag = token[1]
128 for e in elem.iter(tag):
181 tag = predicate[0]
184 if elem.find(tag) is not None:
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/etree/
DElementTree.py106 def find(self, element, tag, namespaces=None): argument
108 if elem.tag == tag:
111 def findtext(self, element, tag, default=None, namespaces=None): argument
112 elem = self.find(element, tag)
116 def iterfind(self, element, tag, namespaces=None): argument
117 if tag[:3] == ".//":
118 for elem in element.iter(tag[3:]):
121 if elem.tag == tag:
123 def findall(self, element, tag, namespaces=None): argument
124 return list(self.iterfind(element, tag, namespaces))
[all …]
DElementPath.py75 tag = token[1]
76 if tag and tag[0] != "{" and ":" in tag:
78 prefix, uri = tag.split(":", 1)
97 tag = token[1]
101 if e.tag == tag:
121 tag = "*"
123 tag = token[1]
128 for e in elem.iter(tag):
181 tag = predicate[0]
184 if elem.find(tag) is not None:
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dsgmllib.py250 tag, data = match.group(1, 2)
251 self.__starttag_text = '<%s/' % tag
252 tag = tag.lower()
254 self.finish_shorttag(tag, data)
270 tag = self.lasttag
276 tag = rawdata[i+1:k].lower()
277 self.lasttag = tag
296 self.finish_starttag(tag, attrs)
317 tag = rawdata[i+2:j].strip().lower()
320 self.finish_endtag(tag)
[all …]
Ddifflib.py570 tag = ''
572 tag = 'replace'
574 tag = 'delete'
576 tag = 'insert'
577 if tag:
578 answer.append( (tag, i, ai, j, bj) )
616 tag, i1, i2, j1, j2 = codes[0]
617 codes[0] = tag, max(i1, i2-n), i2, max(j1, j2-n), j2
619 tag, i1, i2, j1, j2 = codes[-1]
620 codes[-1] = tag, i1, min(i2, i1+n), j1, min(j2, j1+n)
[all …]
/device/google/contexthub/firmware/os/algos/calibration/util/
Dcal_log.h28 # define CAL_DEBUG_LOG(tag, fmt, ...) \ argument
29 printf("%s " fmt "\n", tag, ##__VA_ARGS__);
35 # define LOGD_TAG(tag, fmt, ...) \ argument
36 LOG_FUNC(LOG_DEBUG, "%s " fmt "\n", tag, ##__VA_ARGS__)
37 # define CAL_DEBUG_LOG(tag, fmt, ...) \ argument
38 osLog(LOG_DEBUG, "%s " fmt, tag, ##__VA_ARGS__);
41 # define CAL_DEBUG_LOG(tag, fmt, ...) \ argument
42 chreLog(CHRE_LOG_INFO, "%s " fmt, tag, ##__VA_ARGS__)
49 # define CAL_DEBUG_LOG(tag, format, ...) \ argument
50 LOGI("%s " format, tag, ##__VA_ARGS__)
/device/generic/goldfish-opengl/fuchsia/include/cutils/
Dlog.h20 #define android_printLog(prio, tag, ...) \ argument
21 __android_log_print(prio, tag, __VA_ARGS__)
23 #define LOG_PRI(priority, tag, ...) android_printLog(priority, tag, __VA_ARGS__) argument
24 #define ALOG(priority, tag, ...) LOG_PRI(ANDROID_##priority, tag, __VA_ARGS__) argument
28 #define android_printAssert(condition, tag, ...) \ argument
29 __android_log_assert(condition, tag, \
54 int __android_log_print(int priority, const char* tag, const char* format, ...);
56 [[noreturn]] void __android_log_assert(const char* condition, const char* tag,
/device/google/cuttlefish_common/guest/commands/usbforward/
Dusb_server.cpp120 void USBServer::HandleDeviceList(uint32_t tag) { in HandleDeviceList() argument
128 ResponseHeader rsp{StatusSuccess, tag}; in HandleDeviceList()
142 void USBServer::HandleAttach(uint32_t tag) { in HandleAttach() argument
148 ResponseHeader rsp{handle_ ? StatusSuccess : StatusFailure, tag}; in HandleAttach()
152 void USBServer::HandleHeartbeat(uint32_t tag) { in HandleHeartbeat() argument
154 ResponseHeader rsp{handle_ ? StatusSuccess : StatusFailure, tag}; in HandleHeartbeat()
158 void USBServer::HandleControlTransfer(uint32_t tag) { in HandleControlTransfer() argument
170 [this, is_data_in, tag](bool is_success, const uint8_t* data, in HandleControlTransfer()
172 OnTransferComplete(tag, is_data_in, is_success, data, length); in HandleControlTransfer()
196 requests_in_flight_[tag] = std::move(treq); in HandleControlTransfer()
[all …]
Dusb_server.h51 void HandleDeviceList(uint32_t tag);
54 void HandleAttach(uint32_t tag);
57 void HandleControlTransfer(uint32_t tag);
60 void HandleDataTransfer(uint32_t tag);
63 void HandleHeartbeat(uint32_t tag);
67 void OnTransferComplete(uint32_t tag, bool is_data_in, bool is_success,
/device/google/cuttlefish_common/guest/hals/camera/
DExif.cpp69 static void removeExistingEntry(ExifData* exifData, ExifIfd ifd, int tag) { in removeExistingEntry() argument
71 static_cast<ExifTag>(tag)); in removeExistingEntry()
77 static ExifEntry* allocateEntry(int tag, in allocateEntry() argument
86 entry->tag = static_cast<ExifTag>(tag); in allocateEntry()
99 int tag, in createEntry() argument
102 removeExistingEntry(exifData, ifd, tag); in createEntry()
104 ExifEntry* entry = allocateEntry(tag, EXIF_FORMAT_RATIONAL, N); in createEntry()
124 int tag, in createEntry() argument
129 return createEntry(exifData, ifd, tag, values, denominator); in createEntry()
136 int tag, in createEntry() argument
[all …]
/device/linaro/bootloader/edk2/CorebootModulePkg/Include/
DCoreboot.h105 UINT32 tag; member
127 UINT32 tag; member
135 UINT32 tag; member
153 UINT32 tag; member
161 UINT32 tag; member
188 UINT32 tag; member
203 UINT32 tag; member
210 UINT32 tag; member
230 UINT32 tag; member
240 UINT32 tag; member
/device/google/bonito/json-c/
DDoxyfile17 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
22 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
28 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
35 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
44 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
56 # This tag can be used to specify the encoding used in the generated output.
59 # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES
61 # whereas setting the tag to NO uses a Unix-style encoding (the default for
66 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
73 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
[all …]
/device/google/crosshatch/json-c/
DDoxyfile17 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
22 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
28 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
35 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
44 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
56 # This tag can be used to specify the encoding used in the generated output.
59 # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES
61 # whereas setting the tag to NO uses a Unix-style encoding (the default for
66 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
73 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
[all …]
/device/generic/goldfish/camera/
DExif.cpp61 static void removeExistingEntry(ExifData* exifData, ExifIfd ifd, int tag) { in removeExistingEntry() argument
63 static_cast<ExifTag>(tag)); in removeExistingEntry()
69 static ExifEntry* allocateEntry(int tag, in allocateEntry() argument
78 entry->tag = static_cast<ExifTag>(tag); in allocateEntry()
91 int tag, in createEntry() argument
94 removeExistingEntry(exifData, ifd, tag); in createEntry()
96 ExifEntry* entry = allocateEntry(tag, EXIF_FORMAT_RATIONAL, N); in createEntry()
116 int tag, in createEntry() argument
121 return createEntry(exifData, ifd, tag, values, denominator); in createEntry()
128 int tag, in createEntry() argument
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Deptags.py42 tag = m.group(0) + '\177%d,%d\n' % (lineno, charno)
43 tags.append(tag)
44 size = size + len(tag)
47 for tag in tags:
48 outfp.write(tag)
/device/google/marlin/camera/QCamera2/HAL3/
DQCamera3VendorTags.cpp388 uint32_t tag) in get_section_name() argument
395 uint32_t section = tag >> 16; in get_section_name()
403 LOGL("section_name[%d] is %s", tag, ret); in get_section_name()
422 uint32_t tag) in get_tag_name() argument
426 uint32_t section = tag >> 16; in get_tag_name()
428 uint32_t tag_index = tag & 0xFFFF; in get_tag_name()
437 else if (tag >= (uint32_t)qcamera3_ext3_section_bounds[section_index]) in get_tag_name()
443 LOGL("tag name for tag %d is %s", tag, ret); in get_tag_name()
464 uint32_t tag) in get_tag_type() argument
468 uint32_t section = tag >> 16; in get_tag_type()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_elementtree.c236 PyObject* tag; member
298 element_new(PyObject* tag, PyObject* attrib) in element_new() argument
325 Py_INCREF(tag); in element_new()
326 self->tag = tag; in element_new()
471 PyObject* tag; in element() local
473 if (!PyArg_ParseTuple(args, "O|O!:Element", &tag, in element()
488 elem = element_new(tag, attrib); in element()
501 PyObject* tag; in subelement() local
504 &Element_Type, &parent, &tag, in subelement()
519 elem = element_new(tag, attrib); in subelement()
[all …]
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/FdtLib/
Dfdt.c96 uint32_t tag; in fdt_next_tag() local
104 tag = fdt32_to_cpu(*tagp); in fdt_next_tag()
108 switch (tag) { in fdt_next_tag()
140 return tag; in fdt_next_tag()
164 uint32_t tag; in fdt_next_node() local
172 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_next_node()
174 switch (tag) { in fdt_next_node()
196 } while (tag != FDT_BEGIN_NODE); in fdt_next_node()
/device/linaro/bootloader/arm-trusted-firmware/lib/libfdt/
Dfdt.c97 uint32_t tag; in fdt_next_tag() local
105 tag = fdt32_to_cpu(*tagp); in fdt_next_tag()
109 switch (tag) { in fdt_next_tag()
141 return tag; in fdt_next_tag()
165 uint32_t tag; in fdt_next_node() local
173 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_next_node()
175 switch (tag) { in fdt_next_node()
197 } while (tag != FDT_BEGIN_NODE); in fdt_next_node()
/device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
DTpm12.h648 TPM_STRUCTURE_TAG tag; member
658 TPM_STRUCTURE_TAG tag; member
705 TPM_STRUCTURE_TAG tag; member
714 TPM_STRUCTURE_TAG tag; member
723 TPM_STRUCTURE_TAG tag; member
741 TPM_STRUCTURE_TAG tag; member
792 TPM_STRUCTURE_TAG tag; member
813 TPM_STRUCTURE_TAG tag; member
873 TPM_STRUCTURE_TAG tag; member
949 TPM_STRUCTURE_TAG tag; member
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/IndustryStandard/
DTpm12.h481 TPM_STRUCTURE_TAG tag; member
491 TPM_STRUCTURE_TAG tag; member
538 TPM_STRUCTURE_TAG tag; member
547 TPM_STRUCTURE_TAG tag; member
556 TPM_STRUCTURE_TAG tag; member
574 TPM_STRUCTURE_TAG tag; member
625 TPM_STRUCTURE_TAG tag; member
646 TPM_STRUCTURE_TAG tag; member
737 TPM_STRUCTURE_TAG tag; member
828 TPM_STRUCTURE_TAG tag; member
[all …]

12345678