Lines Matching refs:lbuf

653 	char *lbuf = NULL, *abuf = NULL;  local
1114 lbuf = (char *) safe_erealloc(lbuf, llen, 1, MAX_SIZE_OF_INDEX + 1);
1121 snprintf(lbuf, llen, "%s_name[%s]", abuf, array_index);
1123 snprintf(lbuf, llen, "%s_name", param);
1138 snprintf(lbuf, llen, "%s[name][%s]", abuf, array_index);
1140 snprintf(lbuf, llen, "%s[name]", param);
1142 register_http_post_files_variable(lbuf, s, &PG(http_globals)[TRACK_VARS_FILES], 0);
1150 snprintf(lbuf, llen, "%s[full_path][%s]", abuf, array_index);
1152 snprintf(lbuf, llen, "%s[full_path]", param);
1154 register_http_post_files_variable(lbuf, filename, &PG(http_globals)[TRACK_VARS_FILES], 0);
1170 snprintf(lbuf, llen, "%s[type][%s]", abuf, array_index);
1172 snprintf(lbuf, llen, "%s[type]", param);
1174 register_http_post_files_variable(lbuf, cd, &PG(http_globals)[TRACK_VARS_FILES], 0);
1192 snprintf(lbuf, llen, "%s[tmp_name][%s]", abuf, array_index);
1194 snprintf(lbuf, llen, "%s[tmp_name]", param);
1196 add_protected_variable(lbuf);
1202 register_http_post_files_variable_ex(lbuf, &zfilename, &PG(http_globals)[TRACK_VARS_FILES], 1);
1236 snprintf(lbuf, llen, "%s[error][%s]", abuf, array_index);
1238 snprintf(lbuf, llen, "%s[error]", param);
1240 register_http_post_files_variable_ex(lbuf, &error_type, &PG(http_globals)[TRACK_VARS_FILES], 0);
1244 snprintf(lbuf, llen, "%s[size][%s]", abuf, array_index);
1246 snprintf(lbuf, llen, "%s[size]", param);
1251 …register_http_post_files_variable_ex(lbuf, &file_size, &PG(http_globals)[TRACK_VARS_FILES], size_o…
1265 if (lbuf) efree(lbuf);