HomeSort by relevance Sort by last modified time
    Searched refs:getstr (Results 1 - 25 of 28) sorted by null

1 2

  /external/strace/tests/
strace-V.test 11 getstr() function
34 config_year=$(getstr COPYRIGHT_YEAR)
42 " stack-trace=$(getstr USE_UNWINDER)")
61 $(getstr PACKAGE_NAME) -- version $(getstr PACKAGE_VERSION)
62 Copyright (c) 1991-${config_year} The strace developers <$(getstr PACKAGE_URL)>.
  /external/strace/tests-m32/
strace-V.test 11 getstr() function
34 config_year=$(getstr COPYRIGHT_YEAR)
42 " stack-trace=$(getstr USE_UNWINDER)")
61 $(getstr PACKAGE_NAME) -- version $(getstr PACKAGE_VERSION)
62 Copyright (c) 1991-${config_year} The strace developers <$(getstr PACKAGE_URL)>.
  /external/strace/tests-mx32/
strace-V.test 11 getstr() function
34 config_year=$(getstr COPYRIGHT_YEAR)
42 " stack-trace=$(getstr USE_UNWINDER)")
61 $(getstr PACKAGE_NAME) -- version $(getstr PACKAGE_VERSION)
62 Copyright (c) 1991-${config_year} The strace developers <$(getstr PACKAGE_URL)>.
  /external/u-boot/tools/
getline.c 20 NOTE: There is another getstr() function declared in <curses.h>. */
21 static int getstr(char **lineptr, size_t *n, FILE *stream, function
88 return getstr(lineptr, n, stream, '\n', 0);
  /external/lua/src/
lstring.c 45 (memcmp(getstr(a), getstr(b), len) == 0)); /* equal contents */
61 ts->hash = luaS_hash(getstr(ts), ts->u.lnglen, ts->hash);
142 getstr(ts)[l] = '\0'; /* ending 0 */
175 (memcmp(str, getstr(ts), l * sizeof(char)) == 0)) {
187 memcpy(getstr(ts), str, l * sizeof(char));
207 memcpy(getstr(ts), str, l * sizeof(char));
224 if (strcmp(str, getstr(p[j])) == 0) /* hit? */
luac.c 228 const char* s=getstr(ts);
285 #define UPVALNAME(x) ((f->upvalues[x].name) ? getstr(f->upvalues[x].name) : "-")
398 const char* s=f->source ? getstr(f->source) : "=?";
432 i,getstr(f->locvars[i].varname),f->locvars[i].startpc+1,f->locvars[i].endpc+1);
ltm.c 96 return getstr(tsvalue(name)); /* use it as type name */
ldebug.c 130 else return getstr(s);
220 ar->source = p->source ? getstr(p->source) : "=?";
533 *name = getstr(G(L)->tmname[tm]);
632 luaO_chunkid(buff, getstr(src), LUA_IDSIZE);
ldump.c 78 const char *str = getstr(s);
lfunc.c 146 return getstr(f->locvars[i].varname);
lobject.h 328 #define getstr(ts) \ macro
333 #define svalue(o) getstr(tsvalue(o))
lundump.c 101 LoadVector(S, getstr(ts), size); /* load directly in final place */
lparser.c 351 getstr(gt->name), gt->line, getstr(vname));
468 msg = luaO_pushfstring(ls->L, msg, getstr(gt->name), gt->line);
    [all...]
lapi.c 487 return getstr(ts);
499 s = getstr(ts); /* internal copy's address */
1215 return (name == NULL) ? "(*no name)" : getstr(name);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lstring.c 38 (memcmp(getstr(a), getstr(b), len) == 0)); /* equal contents */
143 (memcmp(str, getstr(ts), l * sizeof(char)) == 0)) {
luac.c 225 const char* s=getstr(ts);
274 #define UPVALNAME(x) ((f->upvalues[x].name) ? getstr(f->upvalues[x].name) : "-")
380 const char* s=f->source ? getstr(f->source) : "=?";
414 i,getstr(f->locvars[i].varname),f->locvars[i].startpc+1,f->locvars[i].endpc+1);
ldebug.c 103 else return getstr(s);
187 ar->source = p->source ? getstr(p->source) : "=?";
479 *name = getstr(G(L)->tmname[tm]);
564 luaO_chunkid(buff, getstr(src), LUA_IDSIZE);
ldump.c 72 DumpBlock(getstr(s),size*sizeof(char),D);
lfunc.c 156 return getstr(f->locvars[i].varname);
lobject.h 422 #define getstr(ts) cast(const char *, (ts) + 1) macro
425 #define svalue(o) getstr(rawtsvalue(o))
lparser.c 65 luaX_newstring(ls, getstr(ts), ts->tsv.len);
350 getstr(gt->name), gt->line, getstr(vname));
467 msg = luaO_pushfstring(ls->L, msg, getstr(gt->name), gt->line);
    [all...]
llex.c 106 luaO_chunkid(buff, getstr(ls->source), LUA_IDSIZE);
lapi.c 509 return getstr(ts);
526 return getstr(ts);
1209 return (name == NULL) ? "" : getstr(name);
  /external/python/cpython2/Lib/test/
test_curses.py 7 # Functions not tested: {def,reset}_{shell,prog}_mode, getch(), getstr(),
208 self.assertRaises(ValueError, stdscr.getstr, -400)
209 self.assertRaises(ValueError, stdscr.getstr, 2, 3, -400)
  /external/python/cpython3/Lib/test/
test_curses.py 7 # Functions not tested: {def,reset}_{shell,prog}_mode, getch(), getstr(),
209 self.assertRaises(ValueError, stdscr.getstr, -400)
210 self.assertRaises(ValueError, stdscr.getstr, 2, 3, -400)

Completed in 372 milliseconds

1 2