Searched defs:what (Results 1 - 21 of 21) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
H A Dlmem.c47 int limit, const char *what) {
52 luaG_runerror(L, "too many %s (limit is %d)", what, limit);
46 luaM_growaux_(lua_State *L, void *block, int *size, size_t size_elems, int limit, const char *what) argument
H A Dluac.c41 static void cannot(const char* what) argument
43 fprintf(stderr,"%s: cannot %s %s: %s\n",progname,what,output,strerror(errno));
H A Dldebug.c183 ar->what = "C";
190 ar->what = (ar->linedefined == 0) ? "main" : "Lua";
215 static int auxgetinfo (lua_State *L, const char *what, lua_Debug *ar, argument
218 for (; *what; what++) {
219 switch (*what) {
266 LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) { argument
272 if (*what == '>') {
276 what++; /* skip the '>' */
285 status = auxgetinfo(L, what, a
320 const char *what = getobjname(p, pc, c, name); /* search for 'c' */ local
[all...]
H A Dlauxlib.c86 else if (*ar->what == 'm') /* main? */
88 else if (*ar->what == 'C') {
234 #define inspectstat(stat,what) \
236 else if (WIFSIGNALED(stat)) { stat = WTERMSIG(stat); what = "signal"; }
240 #define inspectstat(stat,what) /* no op */
248 const char *what = "exit"; /* type of termination */ local
252 inspectstat(stat, what); /* interpret result */
253 if (*what == 'e' && stat == 0) /* successful termination? */
257 lua_pushstring(L, what);
259 return 3; /* return true/nil,what,cod
587 errfile(lua_State *L, const char *what, int fnameindex) argument
[all...]
H A Dlstrlib.c375 const char *p, int what) {
380 ms->capture[level].len = what;
448 ep = classend(ms, p); /* points to what is next */
374 start_capture(MatchState *ms, const char *s, const char *p, int what) argument
H A Dlapi.c1021 LUA_API int lua_gc (lua_State *L, int what, int data) { argument
1026 switch (what) {
H A Dlparser.c83 static l_noret errorlimit (FuncState *fs, int limit, const char *what) { argument
91 what, limit, where);
96 static void checklimit (FuncState *fs, int v, int l, const char *what) { argument
97 if (v > l) errorlimit(fs, l, what);
126 static void check_match (LexState *ls, int what, int who, int where) { argument
127 if (!testnext(ls, what)) {
129 error_expected(ls, what);
133 luaX_token2str(ls, what), luaX_token2str(ls, who), where));
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dimghdr.py3 __all__ = ["what"]
9 def what(file, h=None): function
159 print what(filename)
H A Dsndhdr.py19 Function what() calls whathdr(). (It used to also use some
23 what() for all files mentioned on the argument list. For directory
24 arguments it calls what() for all files in that directory. Default
33 __all__ = ["what","whathdr"]
35 def what(filename): function
223 print what(filename)
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
H A Dregsyntax.c288 unsigned int what, OnigCodePoint code)
290 switch (what) {
287 onig_set_meta_char(OnigSyntaxType* enc, unsigned int what, OnigCodePoint code) argument
/device/generic/goldfish/hwcomposer/
H A Dhwcomposer.cpp112 static int hwc_query(struct hwc_composer_device_1* dev, int what, int* value) { argument
116 switch (what) {
126 ALOGE("%s badness unsupported query what=%d", __FUNCTION__, what);
/device/linaro/bootloader/edk2/StdLib/Include/Lua/
H A Dlua.h294 LUA_API int (lua_gc) (lua_State *L, int what, int data);
383 LUA_API int (lua_getinfo) (lua_State *L, const char *what, lua_Debug *ar);
403 const char *what; /* (S) 'Lua', 'C', 'main', 'tail' */ member in struct:lua_Debug
/device/google/contexthub/firmware/os/algos/
H A Dfusion.c137 static int fusion_init_complete(struct Fusion *fusion, int what, const struct Vec3 *d, float dT) { argument
142 switch (what) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_hotshot.c389 int what; local
413 what = c & WHAT_OTHER;
414 if (what == WHAT_OTHER)
415 what = c; /* need all the bits for type */
419 switch (what) {
487 PyTuple_SET_ITEM(result, 0, PyInt_FromLong(what));
506 what = PyTrace_LINE;
511 what = (b0 & 0x0E) >> 1;
513 if (what == PyTrace_CALL) {
859 tracer_callback(ProfilerObject *self, PyFrameObject *frame, int what, argument
[all...]
H A D_lsprof.c436 profiler_callback(PyObject *self, PyFrameObject *frame, int what, argument
439 switch (what) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dsysmodule.c305 PyFrameObject *frame, int what, PyObject *arg)
314 whatstr = whatstrings[what];
337 int what, PyObject *arg)
344 result = call_trampoline(tstate, self, frame, what, arg);
355 int what, PyObject *arg)
361 if (what == PyTrace_CALL)
367 result = call_trampoline(tstate, callback, frame, what, arg);
304 call_trampoline(PyThreadState *tstate, PyObject* callback, PyFrameObject *frame, int what, PyObject *arg) argument
336 profile_trampoline(PyObject *self, PyFrameObject *frame, int what, PyObject *arg) argument
354 trace_trampoline(PyObject *self, PyFrameObject *frame, int what, PyObject *arg) argument
H A Dceval.c3370 variables to what they were before the current frame was called. The
3560 anyway, just not what you specified :-) */
3643 PyErr_Clear(); /* Don't know what else to do */
3677 int what, PyObject *arg)
3682 err = call_trace(func, obj, frame, what, arg);
3698 int what, PyObject *arg)
3706 result = func(obj, frame, what, arg);
3676 call_trace_protected(Py_tracefunc func, PyObject *obj, PyFrameObject *frame, int what, PyObject *arg) argument
3697 call_trace(Py_tracefunc func, PyObject *obj, PyFrameObject *frame, int what, PyObject *arg) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dsysmodule.c305 PyFrameObject *frame, int what, PyObject *arg)
314 whatstr = whatstrings[what];
337 int what, PyObject *arg)
344 result = call_trampoline(tstate, self, frame, what, arg);
355 int what, PyObject *arg)
361 if (what == PyTrace_CALL)
367 result = call_trampoline(tstate, callback, frame, what, arg);
304 call_trampoline(PyThreadState *tstate, PyObject* callback, PyFrameObject *frame, int what, PyObject *arg) argument
336 profile_trampoline(PyObject *self, PyFrameObject *frame, int what, PyObject *arg) argument
354 trace_trampoline(PyObject *self, PyFrameObject *frame, int what, PyObject *arg) argument
H A Dceval.c3356 variables to what they were before the current frame was called. The
3538 anyway, just not what you specified :-) */
3621 PyErr_Clear(); /* Don't know what else to do */
3655 int what, PyObject *arg)
3660 err = call_trace(func, obj, frame, what, arg);
3676 int what, PyObject *arg)
3684 result = func(obj, frame, what, arg);
3654 call_trace_protected(Py_tracefunc func, PyObject *obj, PyFrameObject *frame, int what, PyObject *arg) argument
3675 call_trace(Py_tracefunc func, PyObject *obj, PyFrameObject *frame, int what, PyObject *arg) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dtypeobject.c1058 untracked. Because we don't know what the base class does, the
1436 diagnose what constraint can't be satisfied.
2053 /* XXX Could call super(type, cls).__init__() but what's the point? */
4589 hackcheck(PyObject *self, setattrofunc func, char *what) argument
4599 what,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dtypeobject.c1040 untracked. Because we don't know what the base class does, the
1418 diagnose what constraint can't be satisfied.
2035 /* XXX Could call super(type, cls).__init__() but what's the point? */
4537 hackcheck(PyObject *self, setattrofunc func, char *what) argument
4547 what,

Completed in 1142 milliseconds