Lines Matching defs:file
3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
63 /* forward dec'l from this file */
258 spec->file);
266 * file -> ???
274 const char *file)
287 parent_dir = ap_make_dirstr_parent(pool, file);
342 spec->file);
349 spec->file);
358 luaL_loadbuffer(L, spec->bytecode, spec->bytecode_len, spec->file);
364 "loading lua file %s", spec->file);
365 rc = luaL_loadfile(L, spec->file);
368 "Error loading %s: %s", spec->file,
375 "Error loading %s: %s", spec->file,
398 copied_spec->file = apr_pstrdup(pool, spec->file);
440 hash = apr_psprintf(r->pool, "reslist:%s", spec->file);
477 if (apr_pool_userdata_get((void **)&L, spec->file,
484 "creating lua_State with file %s", spec->file);
489 apr_pool_userdata_set(L, spec->file, cleanup_lua, lifecycle_pool);
499 mkey = apr_psprintf(r->pool, "ap_lua_modified:%s", spec->file);
508 apr_stat(&lua_finfo, spec->file, APR_FINFO_MTIME|APR_FINFO_SIZE, lifecycle_pool);
510 /* On first visit, modified will be zero, but that's fine - The file is
529 "(re)loading lua file %s", spec->file);
530 rc = luaL_loadfile(L, spec->file);
533 "Error loading %s: %s", spec->file,