Home
last modified time | relevance | path

Searched refs:lineinfo (Results 1 – 16 of 16) sorted by relevance

/freebsd-13.1/crypto/openssh/
H A Dhostfile.c761 memset(&lineinfo, 0, sizeof(lineinfo)); in hostkeys_foreach_file()
769 free(lineinfo.line); in hostkeys_foreach_file()
771 memset(&lineinfo, 0, sizeof(lineinfo)); in hostkeys_foreach_file()
772 lineinfo.path = path; in hostkeys_foreach_file()
778 lineinfo.note = note; in hostkeys_foreach_file()
802 lineinfo.hosts = cp; in hostkeys_foreach_file()
824 lineinfo.hosts); in hostkeys_foreach_file()
866 lineinfo.keytype = lineinfo.key->type; in hostkeys_foreach_file()
867 lineinfo.comment = cp; in hostkeys_foreach_file()
902 lineinfo.key = NULL; in hostkeys_foreach_file()
[all …]
/freebsd-13.1/sys/contrib/openzfs/module/lua/
H A Dldebug.h17 #define getfuncline(f,pc) (((f)->lineinfo) ? (f)->lineinfo[pc] : 0)
H A Dlfunc.c118 f->lineinfo = NULL; in luaF_newproto()
138 luaM_freearray(L, f->lineinfo, f->sizelineinfo); in luaF_freeproto()
H A Dldebug.c215 int *lineinfo = f->l.p->lineinfo; in collectvalidlines() local
221 luaH_setint(L, t, lineinfo[i], &v); /* table[line] = true */ in collectvalidlines()
H A Dlcode.c222 luaM_growvector(fs->ls->L, f->lineinfo, fs->pc, f->sizelineinfo, int, in luaK_code()
224 f->lineinfo[fs->pc] = fs->ls->lastline; in luaK_code()
870 fs->f->lineinfo[fs->pc - 1] = line; in luaK_fixline()
H A Dlobject.h470 int *lineinfo; /* map from opcodes to source lines (debug information) */ member
H A Dlparser.c561 luaM_reallocvector(L, f->lineinfo, f->sizelineinfo, fs->pc, int); in close_func()
/freebsd-13.1/contrib/lua/src/
H A Dldebug.c88 if (f->lineinfo == NULL) /* no debug information? */ in luaG_getfuncline()
94 lua_assert(f->lineinfo[basepc] != ABSLINEINFO); in luaG_getfuncline()
95 baseline += f->lineinfo[basepc]; /* correct line */ in luaG_getfuncline()
287 if (p->lineinfo[pc] != ABSLINEINFO) in nextline()
288 return currentline + p->lineinfo[pc]; in nextline()
786 if (p->lineinfo == NULL) /* no debug information? */ in changedline()
789 if (p->lineinfo[oldpc] != 0) in changedline()
H A Dlfunc.c255 f->lineinfo = NULL; in luaF_newproto()
277 luaM_freearray(L, f->lineinfo, f->sizelineinfo); in luaF_freeproto()
H A Dlundump.c230 f->lineinfo = luaM_newvectorchecked(S->L, n, ls_byte); in loadDebug()
232 loadVector(S, f->lineinfo, n); in loadDebug()
H A Dldump.c158 dumpVector(D, f->lineinfo, n); in dumpDebug()
H A Dlcode.c348 luaM_growvector(fs->ls->L, f->lineinfo, pc, f->sizelineinfo, ls_byte, in savelineinfo()
350 f->lineinfo[pc] = linedif; in savelineinfo()
364 if (f->lineinfo[pc] != ABSLINEINFO) { /* relative line info? */ in removelastlineinfo()
365 fs->previousline -= f->lineinfo[pc]; /* correct last line saved */ in removelastlineinfo()
H A Dlobject.h548 ls_byte *lineinfo; /* information about source lines (debug information) */ member
H A Dlparser.c753 luaM_shrinkvector(L, f->lineinfo, f->sizelineinfo, fs->pc, ls_byte); in close_func()
/freebsd-13.1/contrib/libedit/
H A Dhistedit.h62 typedef struct lineinfo { struct
/freebsd-13.1/usr.bin/bc/
H A Dscan.l270 const struct lineinfo *info = el_line(e);