Lines Matching defs:string
145 lua_pushstring(L, value); /* [string, 1, array, table<s,t>, table<s,s>] */
154 lua_pushstring(L, value); /* [string, #, array, table<s,t>, table<s,s>] */
166 lua_pushstring(L, value); /* [string, table<s,s>, table<s,t>] */
194 lua_pushlstring(L, value, len); /* [string, 1, array, table<s,t>, table<s,s>] */
204 lua_pushlstring(L, value, len); /* [string, #, array, table<s,t>, table<s,s>] */
216 lua_pushlstring(L, value, len); /* [string, table<s,s>, table<s,t>] */
318 return 2; /* [table<string, string>, table<string, array<string>>] */
404 return 2; /* [table<string, string>, table<string, array<string>>] */
815 * lua_apr_b64encode; r:encode_base64(string) - encodes a string to Base64
841 * lua_apr_b64decode; r:decode_base64(string) - decodes a Base64 string
866 * lua_ap_unescape; r:unescape(string) - Unescapes an URL-encoded string
888 * lua_ap_escape; r:escape(string) - URL-escapes a string
905 * lua_apr_md5; r:md5(string) - Calculates an MD5 digest of a string
923 * lua_apr_sha1; r:sha1(string) - Calculates the SHA1 digest of a string
948 * lua_apr_htpassword; r:htpassword(string [, algorithm [, cost]]) - Creates
949 * a htpassword hash from a string
975 * lua_apr_touch; r:touch(string [, time]) - Sets mtime of a file
994 * lua_apr_mkdir; r:mkdir(string [, permissions]) - Creates a directory
1013 * lua_apr_mkrdir; r:mkrdir(string [, permissions]) - Creates directories
1033 * lua_apr_rmdir; r:rmdir(string) - Removes a directory
1050 * lua_apr_date_parse_rfc; r.date_parse_rfc(string) - Parses a DateTime string
1081 * lua_ap_expr; r:expr(string) - Evaluates an expr statement.
1122 * lua_ap_regex; r:regex(string, pattern [, flags])
1628 * Escape a string for logging
1630 * @param str The string to escape
1631 * @return The escaped string
1649 * Determine if a string matches a patterm containing the wildcards '?' or '*'
1650 * @param str The string to check
1738 * ap_custom_response (request_rec *r, int status, const char *string)
1742 * @param string The custom response. This can be a static string, a file
1749 const char *string;
1755 string = lua_tostring(L, 3);
1756 ap_custom_response(r, status, string);
1855 "request_rec->dispatching %s -> string", name);
2394 const char *string;
2404 string = lua_tolstring(L, 2, &len);
2432 ap_rwrite(string, len, r);