Searched refs:etype (Results 1 - 25 of 58) sorted by relevance

123

/external/fio/
H A Dtd_error.c16 int td_non_fatal_error(struct thread_data *td, enum error_type_bit etype, argument
21 if (!td->o.ignore_error[etype]) {
22 td->o.ignore_error[etype] = __NON_FATAL_ERR;
23 td->o.ignore_error_nr[etype] = sizeof(__NON_FATAL_ERR)
27 if (!(td->o.continue_on_error & (1 << etype)))
29 for (i = 0; i < td->o.ignore_error_nr[etype]; i++)
30 if (td->o.ignore_error[etype][i] == err)
H A Dtd_error.h23 int td_non_fatal_error(struct thread_data *td, enum error_type_bit etype,
/external/tcpdump/
H A Dprint-symantec.c46 uint16_t etype; local
50 etype = EXTRACT_16BITS(&sp->ether_type);
52 if (etype <= ETHERMTU)
53 ND_PRINT((ndo, "invalid ethertype %u", etype));
56 tok2str(ethertype_values,"Unknown", etype),
57 etype));
59 if (etype <= ETHERMTU)
60 ND_PRINT((ndo, "invalid ethertype %u", etype));
62 ND_PRINT((ndo, "%s", tok2str(ethertype_values,"Unknown Ethertype (0x%04x)", etype)));
/external/python/cpython2/Lib/
H A Dtraceback.py110 def print_exception(etype, value, tb, limit=None, file=None):
126 lines = format_exception_only(etype, value)
130 def format_exception(etype, value, tb, limit = None):
144 list = list + format_exception_only(etype, value)
147 def format_exception_only(etype, value):
170 if (isinstance(etype, BaseException) or
171 isinstance(etype, types.InstanceType) or
172 etype is None or type(etype) is str):
173 return [_format_final_exc_line(etype, valu
[all...]
H A Dcgitb.py20 3-item tuple (etype, evalue, etb) just like the value of sys.exc_info().
104 etype, evalue, etb = einfo
105 if type(etype) is types.ClassType:
106 etype = etype.__name__
111 strong(pydoc.html.escape(str(etype))),
173 exception = ['<p>%s: %s' % (strong(pydoc.html.escape(str(etype))),
191 ''.join(traceback.format_exception(etype, evalue, etb)))
195 etype, evalue, etb = einfo
196 if type(etype) i
[all...]
/external/libpng/contrib/visupng/
H A Dcexcept.h196 #define define_exception_type(etype) \
200 volatile struct { etype etmp; } v; \
206 /* avoid warnings about a duplicate volatile qualifier in case etype */
/external/python/cpython3/Lib/
H A Dcgitb.py20 3-item tuple (etype, evalue, etb) just like the value of sys.exc_info().
103 etype, evalue, etb = einfo
104 if isinstance(etype, type):
105 etype = etype.__name__
110 strong(pydoc.html.escape(str(etype))),
172 exception = ['<p>%s: %s' % (strong(pydoc.html.escape(str(etype))),
189 ''.join(traceback.format_exception(etype, evalue, etb)))
193 etype, evalue, etb = einfo
194 if isinstance(etype, typ
[all...]
H A Dtraceback.py83 def print_exception(etype, value, tb, limit=None, file=None, chain=True):
94 # format_exception has ignored etype for some time, and code such as cgitb
104 def format_exception(etype, value, tb, limit=None, chain=True):
113 # format_exception has ignored etype for some time, and code such as cgitb
120 def format_exception_only(etype, value):
136 return list(TracebackException(etype, value, None).format_exception_only())
141 def _format_final_exc_line(etype, value):
144 line = "%s\n" % etype
146 line = "%s: %s\n" % (etype, valuestr)
/external/ply/ply/example/BASIC/
H A Dbasinterp.py71 etype = expr[0]
72 if etype == 'NUM':
74 elif etype == 'GROUP':
76 elif etype == 'UNARY':
79 elif etype == 'BINOP':
90 elif etype == 'VAR':
128 etype = expr[1]
131 if etype == '<':
137 elif etype == '<=':
143 elif etype
[all...]
/external/ipsec-tools/src/racoon/
H A Disakmp_frag.c97 int etype; local
104 etype = hdr->etype;
136 hdr->etype = etype;
H A Dremoteconf.c420 check_etypeok( struct remoteconf *rmconf, u_int8_t etype) argument
425 if (e->type == etype)
511 struct etypes *etype = p->etypes; local
523 while (etype) {
524 pbuf += sprintf (pbuf, "%s%s", s_etype(etype->type),
525 etype->next != NULL ? ", " : ";\n");
526 etype = etype->next;
H A Disakmp.c544 switch (isakmp->etype) {
577 isakmp->etype) < 0)
599 if (iph1->etype != isakmp->etype) {
603 s_isakmp_etype(iph1->etype),
604 s_isakmp_etype(isakmp->etype));
626 isakmp->etype);
752 isakmp->etype, saddr2str(remote));
769 isakmp->etype, saddr2str(remote));
797 if (ph1exchange[etypesw1(iph1->etype)]
1121 isakmp_ph1begin_r(vchar_t *msg, struct sockaddr *remote, struct sockaddr *local, u_int8_t etype) argument
[all...]
H A Dhandler.h130 u_int8_t etype; /* Exchange type actually for use */ member in struct:ph1handle
416 u_int8_t etype; member in struct:ph1dump
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemVariable.java412 int etype = t.getXSLToken();
414 if (Constants.ELEMNAME_VALUEOF == etype)
427 else if (Constants.ELEMNAME_TEXTLITERALRESULT == etype)
/external/python/cpython2/Lib/lib-tk/
H A Dttk.py117 def _format_elemcreate(etype, script=False, *args, **kw):
118 """Formats args and kw according to the given element factory etype."""
121 if etype in ("image", "vsapi"):
122 if etype == "image": # define an element based on an image
141 elif etype == "from": # clone an element
229 etype = eopts[0]
232 argc = 1 # etype was the first one
238 spec, opts = _format_elemcreate(etype, True, *elemargs, **elemkw)
241 name, etype, spec, opts))
462 def element_create(self, elementname, etype, *arg
[all...]
/external/python/cpython3/Lib/tkinter/
H A Dttk.py117 def _format_elemcreate(etype, script=False, *args, **kw):
118 """Formats args and kw according to the given element factory etype."""
121 if etype in ("image", "vsapi"):
122 if etype == "image": # define an element based on an image
141 elif etype == "from": # clone an element
229 etype = eopts[0]
232 argc = 1 # etype was the first one
238 spec, opts = _format_elemcreate(etype, True, *elemargs, **elemkw)
241 name, etype, spec, opts))
464 def element_create(self, elementname, etype, *arg
[all...]
/external/libxml2/include/libxml/
H A Dentities.h52 xmlEntityType etype; /* The entity type */ member in struct:_xmlEntity
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBaseTraversers.java967 int etype = _exptype(current); // may call nextNode()
969 if (NULL == etype)
972 if (etype != expandedTypeID)
/external/python/cpython2/Include/
H A Dobject.h432 #define PyHeapType_GET_MEMBERS(etype) \
433 ((PyMemberDef *)(((char *)etype) + Py_TYPE(etype)->tp_basicsize))
/external/python/cpython3/Include/
H A Dobject.h480 #define PyHeapType_GET_MEMBERS(etype) \
481 ((PyMemberDef *)(((char *)etype) + Py_TYPE(etype)->tp_basicsize))
/external/deqp/external/openglcts/modules/gl/
H A Dgl4cES31CompatibilityShaderStorageBufferObjectTests.cpp7442 if (etype == matrix_rm)
7445 ((other_members) ? ("\n " + e[etype][0] + " pad0;") : "") + NL " " + e[etype][0] +
7447 ((other_members) ? ("\n " + e[etype][1] + " pad1;") : "") + NL " " + e[etype][1] +
7449 ((other_members) ? ("\n " + e[etype][2] + " pad2;") : "") + NL " " + e[etype][2] +
7451 ((other_members) ? ("\n " + e[etype][4] + " pad4;") : "") + NL " " + e[etype][4] +
7453 ((other_members) ? ("\n " + e[etype][
7666 int etype; member in class:gl4cts::es31compatibility::__anon4130::AdvancedUnsizedArrayLength2
[all...]
H A Dgl4cShaderStorageBufferObjectTests.cpp7822 if (etype == matrix_rm)
7826 ((other_members) ? ("\n " + e[etype][0] + " pad0;") : "") + NL " " + e[etype][0] +
7828 ((other_members) ? ("\n " + e[etype][1] + " pad1;") : "") + NL " " + e[etype][1] +
7830 ((other_members) ? ("\n " + e[etype][2] + " pad2;") : "") + NL " " + e[etype][2] +
7832 ((other_members) ? ("\n " + e[etype][4] + " pad4;") : "") + NL " " + e[etype][4] +
7834 ((other_members) ? ("\n " + e[etype][
8051 int etype; member in class:gl4cts::__anon4146::AdvancedUnsizedArrayLength2
[all...]
/external/deqp/external/openglcts/modules/gles31/
H A Des31cShaderStorageBufferObjectTests.cpp7413 if (etype == matrix_rm)
7417 ((other_members) ? ("\n " + e[etype][0] + " pad0;") : "") + NL " " + e[etype][0] +
7419 ((other_members) ? ("\n " + e[etype][1] + " pad1;") : "") + NL " " + e[etype][1] +
7421 ((other_members) ? ("\n " + e[etype][2] + " pad2;") : "") + NL " " + e[etype][2] +
7423 ((other_members) ? ("\n " + e[etype][4] + " pad4;") : "") + NL " " + e[etype][4] +
7425 ((other_members) ? ("\n " + e[etype][
7643 int etype; member in class:glcts::__anon4189::AdvancedUnsizedArrayLength2
[all...]
/external/python/cpython2/Tools/pynche/
H A DStripViewer.py252 etype = int(event.type)
253 if (etype == BTNUP or self.__uwd.get()):
/external/python/cpython3/Tools/pynche/
H A DStripViewer.py252 etype = int(event.type)
253 if (etype == BTNUP or self.__uwd.get()):

Completed in 633 milliseconds

123