Home
last modified time | relevance | path

Searched refs:HTAddParam (Results 1 – 14 of 14) sorted by relevance

/mirbsd/src/gnu/usr.bin/lynx/src/
DLYEdit.c204 HTAddParam(&command, format, params++, filename); in edit_temporary_file()
205 HTAddParam(&command, format, params++, position); in edit_temporary_file()
206 HTAddParam(&command, format, params++, editor_arg); in edit_temporary_file()
211 HTAddParam(&command, format, params++, position); in edit_temporary_file()
212 HTAddParam(&command, format, params++, editor_arg); in edit_temporary_file()
213 HTAddParam(&command, format, params++, filename); in edit_temporary_file()
222 HTAddParam(&command, format, params++, HTDOS_short_name(filename)); in edit_temporary_file()
223 HTAddParam(&command, format, params++, position); in edit_temporary_file()
228 HTAddParam(&command, format, params++, HTDOS_short_name(filename)); in edit_temporary_file()
241 HTAddParam(&command, format, params++, filename); in edit_temporary_file()
DLYLocal.c1729 HTAddParam(&buffer, FMT_UNCOMPRESS, 1, program); in build_command()
1730 HTAddParam(&buffer, FMT_UNCOMPRESS, 2, arg); in build_command()
1739 HTAddParam(&buffer, FMT_UUDECODE, 1, program); in build_command()
1740 HTAddParam(&buffer, FMT_UUDECODE, 2, arg); in build_command()
1756 HTAddParam(&buffer, FMT_UNTAR_GZ, 1, dirName); in build_command()
1757 HTAddParam(&buffer, FMT_UNTAR_GZ, 2, program); in build_command()
1758 HTAddParam(&buffer, FMT_UNTAR_GZ, 3, arg); in build_command()
1759 HTAddParam(&buffer, FMT_UNTAR_GZ, 4, tar_path); in build_command()
1771 HTAddParam(&buffer, FMT_UNTAR_Z, 1, dirName); in build_command()
1772 HTAddParam(&buffer, FMT_UNTAR_Z, 2, program); in build_command()
[all …]
DLYMail.c388 HTAddParam(&b_cmd, format, 1, ALTBLAT_MAIL); in blat_cmd()
389 HTAddParam(&b_cmd, format, 2, filename); in blat_cmd()
390 HTAddParam(&b_cmd, format, 3, address); in blat_cmd()
391 HTAddParam(&b_cmd, format, 4, subject); in blat_cmd()
395 HTAddParam(&b_cmd, format, 7, NonNull(ccaddr)); in blat_cmd()
418 HTAddParam(&b_cmd, format, 1, BLAT_MAIL); in blat_cmd()
430 HTAddParam(&b_cmd, format, 2, dosname); in blat_cmd()
547 HTAddParam(&cmd, format, 1, shell); in LYSendMailFile()
548 HTAddParam(&cmd, format, 2, c_option); in LYSendMailFile()
549 HTAddParam(&cmd, format, 3, system_mail); in LYSendMailFile()
[all …]
DLYUpload.c130 HTAddParam(&the_upload, upload_command->command, 1, filename); in LYUpload()
136 HTAddParam(&the_command, SUBDIR_COMMAND, 1, directory); in LYUpload()
DHTFWriter.c342 HTAddParam(&(me->end_command), me->viewer_command, 1, me->anchor->FileCache); in HTFWriter_free()
572 HTAddParam(&prepend, format, 2, fnam); /* ...to quote if needed */ in mailcap_substitute()
733 HTAddParam(&(me->remove_command), REMOVE_COMMAND, 1, fnam); in HTSaveAndExecute()
902 HTAddParam(&(ret_obj->remove_command), REMOVE_COMMAND, 1, fnam); in HTSaveToFile()
909 HTAddParam(&FIXED_RECORD_COMMAND, FIXED_RECORD_COMMAND_MASK, 1, fnam); in HTSaveToFile()
1245 HTAddParam(&(me->end_command), uncompress_mask, 1, fnam); in HTCompressed()
1254 HTAddParam(&(me->remove_command), REMOVE_COMMAND, 1, fnam); in HTCompressed()
DLYDownload.c413 HTAddParam(&the_command, download_command->command, count, file); in LYDownload()
415 HTAddParam(&the_command, download_command->command, ++count, buffer->str); in LYDownload()
DLYBookmark.c646 HTAddParam(&buffer, MV_FMT, 1, program); in remove_bookmark_link()
647 HTAddParam(&buffer, MV_FMT, 2, newfile); in remove_bookmark_link()
648 HTAddParam(&buffer, MV_FMT, 3, filename_buffer); in remove_bookmark_link()
DLYPrint.c894 HTAddParam(&the_command, cur_printer->command, 1, my_temp); in send_file_to_printer()
896 HTAddParam(&the_command, cur_printer->command, 2, my_file->str); in send_file_to_printer()
902 HTAddParam(&the_command, cur_printer->command, 1, my_temp); in send_file_to_printer()
903 HTAddParam(&the_command, cur_printer->command, 2, my_file->str); in send_file_to_printer()
DLYExtern.c149 HTAddParam(result, fmt, 1, parm); in format()
DLYUtils.c7056 HTAddParam(&the_command, COPY_COMMAND, 1, program); in LYCopyFile()
7057 HTAddParam(&the_command, COPY_COMMAND, 2, src); in LYCopyFile()
7058 HTAddParam(&the_command, COPY_COMMAND, 3, dst); in LYCopyFile()
/mirbsd/src/gnu/usr.bin/lynx/WWW/Library/Implementation/
DHTTelnet.c176 HTAddParam(&command, FMT_TELNET, 1, program); in remote_session()
178 HTAddParam(&command, FMT_TELNET, 3, user); in remote_session()
179 HTAddParam(&command, FMT_TELNET, 4, hostname); in remote_session()
180 HTAddParam(&command, FMT_TELNET, 5, port); in remote_session()
197 HTAddParam(&command, FMT_RLOGIN, 1, program); in remote_session()
198 HTAddParam(&command, FMT_RLOGIN, 2, hostname); in remote_session()
200 HTAddParam(&command, FMT_RLOGIN, 4, user); in remote_session()
207 HTAddParam(&command, FMT_TN3270, 1, program); in remote_session()
208 HTAddParam(&command, FMT_TN3270, 2, hostname); in remote_session()
209 HTAddParam(&command, FMT_TN3270, 3, port); in remote_session()
[all …]
DHTString.h114 #define HTAddXpand(result,command,number,parameter) HTAddParam(result,command,number,parameter)
119 extern void HTAddParam(char **result, const char *command, int number, const char *parameter);
DHTString.c1150 void HTAddParam(char **result, in HTAddParam() function
/mirbsd/src/gnu/usr.bin/lynx/
DCHANGES4401 * use HTAddParam/HTEndParam rather than HTSprintf0 for building external
7477 * correct calls to HTAddParam() in LYDownLoad.c to handle optional second
7684 * correct order of params for non-Unix use of HTAddParam in LYBookmark.c
7747 * modify LYEdit.c to use HTAddParam - TD
7878 HTAddParam - TD
7880 HTAddParam, which broke telnet/rlogin URLs (reported by IC) - TD
7914 which quote parameters as needed: HTAddParam(), HTEndParam(). Moved the