HomeSort by relevance Sort by last modified time
    Searched defs:plib (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/skia/third_party/lua/src/
loadlib.c 252 void *plib; local
255 plib = lua_touserdata(L, -1); /* plib = CLIBS[path] */
256 lua_pop(L, 2); /* pop CLIBS table and 'plib' */
257 return plib;
261 static void ll_addtoclib (lua_State *L, const char *path, void *plib) {
263 lua_pushlightuserdata(L, plib);
265 lua_setfield(L, -3, path); /* CLIBS[path] = plib */
266 lua_rawseti(L, -2, luaL_len(L, -2) + 1); /* CLIBS[#CLIBS + 1] = plib */
  /external/ltrace/
prototype.c 137 protolib_init(struct protolib *plib)
139 DICT_INIT(&plib->prototypes, char *, struct prototype,
142 DICT_INIT(&plib->named_types, char *, struct named_type,
145 VECT_INIT(&plib->imports, struct protolib *);
147 plib->refs = 0;
163 protolib_destroy(struct protolib *plib)
165 assert(plib->refs == 0);
167 VECT_DESTROY(&plib->imports, struct prototype *, NULL, NULL);
169 DICT_DESTROY(&plib->prototypes, const char *, struct prototype,
172 DICT_DESTROY(&plib->named_types, const char *, struct named_type
392 struct protolib *plib = consider_config_dir(cache, *dirs, key); local
406 struct protolib *plib = protolib_cache_file(cache, *fnp, 1); local
490 struct protolib *plib = data; local
586 struct protolib *plib; local
607 struct protolib *plib = build_default_config(cache, key); local
621 struct protolib *plib; local
    [all...]

Completed in 130 milliseconds