Lines Matching refs:lbuf
654 char *lbuf = NULL, *abuf = NULL; local
1124 lbuf = (char *) safe_erealloc(lbuf, llen, 1, MAX_SIZE_OF_INDEX + 1);
1131 snprintf(lbuf, llen, "%s_name[%s]", abuf, array_index);
1133 snprintf(lbuf, llen, "%s_name", param);
1148 snprintf(lbuf, llen, "%s[name][%s]", abuf, array_index);
1150 snprintf(lbuf, llen, "%s[name]", param);
1152 register_http_post_files_variable(lbuf, s, &PG(http_globals)[TRACK_VARS_FILES], 0);
1160 snprintf(lbuf, llen, "%s[full_path][%s]", abuf, array_index);
1162 snprintf(lbuf, llen, "%s[full_path]", param);
1164 register_http_post_files_variable(lbuf, filename, &PG(http_globals)[TRACK_VARS_FILES], 0);
1180 snprintf(lbuf, llen, "%s[type][%s]", abuf, array_index);
1182 snprintf(lbuf, llen, "%s[type]", param);
1184 register_http_post_files_variable(lbuf, cd, &PG(http_globals)[TRACK_VARS_FILES], 0);
1202 snprintf(lbuf, llen, "%s[tmp_name][%s]", abuf, array_index);
1204 snprintf(lbuf, llen, "%s[tmp_name]", param);
1206 add_protected_variable(lbuf);
1212 register_http_post_files_variable_ex(lbuf, &zfilename, &PG(http_globals)[TRACK_VARS_FILES], 1);
1246 snprintf(lbuf, llen, "%s[error][%s]", abuf, array_index);
1248 snprintf(lbuf, llen, "%s[error]", param);
1250 register_http_post_files_variable_ex(lbuf, &error_type, &PG(http_globals)[TRACK_VARS_FILES], 0);
1254 snprintf(lbuf, llen, "%s[size][%s]", abuf, array_index);
1256 snprintf(lbuf, llen, "%s[size]", param);
1261 …register_http_post_files_variable_ex(lbuf, &file_size, &PG(http_globals)[TRACK_VARS_FILES], size_o…
1275 if (lbuf) efree(lbuf);