Home
last modified time | relevance | path

Searched refs:the_command (Results 1 – 4 of 4) sorted by relevance

/mirbsd/src/gnu/usr.bin/lynx/src/
DLYUpload.c51 char *the_command = 0; in LYUpload() local
136 HTAddParam(&the_command, SUBDIR_COMMAND, 1, directory); in LYUpload()
137 HTEndParam(&the_command, SUBDIR_COMMAND, 1); in LYUpload()
138 StrAllocCat(the_command, the_upload); in LYUpload()
140 CTRACE((tfp, "command: %s\n", the_command)); in LYUpload()
143 LYSystem(the_command); in LYUpload()
146 FREE(the_command); in LYUpload()
DLYDownload.c33 char *the_command = 0; in LYDownload() local
413 HTAddParam(&the_command, download_command->command, count, file); in LYDownload()
415 HTAddParam(&the_command, download_command->command, ++count, buffer->str); in LYDownload()
416 HTEndParam(&the_command, download_command->command, count); in LYDownload()
423 CTRACE((tfp, "command: %s\n", the_command)); in LYDownload()
425 LYSystem(the_command); in LYDownload()
426 FREE(the_command); in LYDownload()
DLYPrint.c804 char *the_command = 0; in send_file_to_printer() local
894 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()
897 HTEndParam(&the_command, cur_printer->command, 3); in send_file_to_printer()
899 HTEndParam(&the_command, cur_printer->command, 2); 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()
904 HTEndParam(&the_command, cur_printer->command, 2); in send_file_to_printer()
914 CTRACE((tfp, "command: %s\n", the_command)); in send_file_to_printer()
928 LYSystem(the_command); in send_file_to_printer()
[all …]
DLYUtils.c7054 char *the_command = 0; in LYCopyFile() local
7056 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()
7059 HTEndParam(&the_command, COPY_COMMAND, 3); in LYCopyFile()
7061 CTRACE((tfp, "command: %s\n", the_command)); in LYCopyFile()
7063 code = LYSystem(the_command); in LYCopyFile()
7066 FREE(the_command); in LYCopyFile()