Searched refs:output (Results 1 - 25 of 35) sorted by relevance

12

/openwrt/tools/missing-macros/src/bin/
H A Dhelp2man6 my $output;
11 'output=s' => \$output,
20 elsif ($output)
22 open O, "> $output" || die "Unable to open $output: $!\n";
H A Dmakeinfo6 my $output;
17 'output=s' => \$output,
64 return $setfile ? "$setfile.html" : "$name.html" unless $output;
65 return $output;
68 return $setfile ? "$setfile/index.html" : "$name/index.html" unless $output;
69 return "$output/index.html";
75 return $setfile ? "$setfile.xml" : "$name.info" unless $output;
76 return $output;
80 return ($output || "
[all...]
/openwrt/package/utils/px5g-standalone/src/polarssl/
H A Dsha1.h76 * \param output SHA-1 checksum result
78 void sha1_finish( sha1_context *ctx, unsigned char output[20] );
85 * \param output SHA-1 checksum result
87 void sha1( unsigned char *input, int ilen, unsigned char output[20] );
93 * \param output SHA-1 checksum result
98 int sha1_file( char *path, unsigned char output[20] );
122 * \param output SHA-1 HMAC checksum result
124 void sha1_hmac_finish( sha1_context *ctx, unsigned char output[20] );
133 * \param output HMAC-SHA-1 result
137 unsigned char output[2
[all...]
H A Drsa.h176 * \param output output buffer
183 * \note The input and output buffers must be large
188 unsigned char *output );
195 * \param output output buffer
199 * \note The input and output buffers must be large
204 unsigned char *output );
213 * \param output buffer that will hold the ciphertext
217 * \note The output buffe
[all...]
/openwrt/target/linux/generic/image/lzma-loader/src/
H A Dprint.h21 * output function takes an void pointer which is passed in as the
22 * second argument in lp_Print(). This black-box argument gives output
25 * The second argument in output function is a pointer to char buffer.
28 * output function cannot assume the buffer is null-terminated after
31 void lp_Print(void (*output)(void *, char *, int),
H A Dprint.c30 lp_Print(void (*output)(void *, char *, int),
38 (*output)(arg, (char*)theFatalMsg, sizeof(theFatalMsg)-1); for(;;); \
40 (*output)(arg, s, l); \
205 /* output this char as it is */
/openwrt/scripts/
H A Dsrecimage.pl10 my ($input, $output, $offset) = @ARGV;
12 if (!defined($input) || !-f $input || !defined($output) ||
14 die "Usage: $0 <input file> <output file> <load address>\n";
39 open(OUT, '>:raw', $output) || die "Unable to open $output: $!\n";
41 my ($basename) = $output =~ m!([^/]+)$!;
H A Dredboot-script.pl43 -o <file> : output image file, default $arg{o}
/openwrt/tools/firmware-utils/src/
H A Dhcsmakeimage.c75 char* output=NULL; local
98 output=optarg;
164 if (!output)
166 output = malloc(strlen(input+5));
167 strcpy(output,input);
168 strcat(output,".bin");
171 FILE* fd_out = fopen ( output,"w+" );
174 fprintf(stderr, "Failed to open output file: %s\n", output);
179 printf("Firmware image %s is ready\n", output);
[all...]
H A Dtplink-safeloader.c579 static void do_cpe510(const char *output, const char *kernel_image, const char *rootfs_image, uint32_t rev, bool add_jffs2_eof, bool sysupgrade) { argument
595 FILE *file = fopen(output, "wb");
597 error(1, errno, "unable to open output file");
600 error(1, 0, "unable to write output file");
612 static void do_c2600(const char *output, const char *kernel_image, const char *rootfs_image, uint32_t rev, bool add_jffs2_eof, bool sysupgrade) { argument
628 FILE *file = fopen(output, "wb");
630 error(1, errno, "unable to open output file");
633 error(1, 0, "unable to write output file");
645 static void do_tl1043ndv4(const char *output, const char *kernel_image, const char *rootfs_image, uint32_t rev, bool add_jffs2_eof, bool sysupgrade) { argument
661 FILE *file = fopen(output, "w
698 const char *board = NULL, *kernel_image = NULL, *rootfs_image = NULL, *output = NULL; local
[all...]
H A Dseama.c107 " the output file which was specified with '-x'.\n"
108 " ex: seama -x output -i seama.image -m file=sealpac\n"
384 /* Open the output file. */
421 static void extract_file(const char * output) argument
477 /* open output file */
478 ofh = fopen(output, "w");
479 if (!ofh) printf("SEAMA: unable to open '%s' for writting.\n",output);
/openwrt/package/utils/busybox/
H A Dconvert_menuconfig.pl19 my $output = $input;
21 $output =~ s/^$replace\///g;
22 $output =~ s/sysdeps\/linux\///g;
23 print STDERR "$input => $output\n";
24 $output =~ /^(.+)\/[^\/]+$/ and system("mkdir -p $1");
27 open OUTPUT, ">$output";
/openwrt/target/linux/rb532/base-files/sbin/
H A Dcf2nand6 local output="$2"
9 dd if="$input" bs=3M count=1 > "$output"
10 /sbin/patch-cmdline "$output" "$cmdline"
/openwrt/package/utils/px5g-standalone/src/library/
H A Drsa.c204 unsigned char *output )
221 MPI_CHK( mpi_write_binary( &T, output, olen ) );
238 unsigned char *output )
273 * output = T2 + T * Q
280 MPI_CHK( mpi_write_binary( &T, output, olen ) );
298 unsigned char *output )
301 unsigned char *p = output;
334 ? rsa_public( ctx, output, output )
335 : rsa_private( ctx, output, outpu
341 rsa_pkcs1_decrypt( rsa_context *ctx, int mode, int *olen, unsigned char *input, unsigned char *output, int output_max_len) argument
[all...]
H A Dsha1.c299 void sha1_finish( sha1_context *ctx, unsigned char output[20] )
318 PUT_ULONG_BE( ctx->state[0], output, 0 );
319 PUT_ULONG_BE( ctx->state[1], output, 4 );
320 PUT_ULONG_BE( ctx->state[2], output, 8 );
321 PUT_ULONG_BE( ctx->state[3], output, 12 );
322 PUT_ULONG_BE( ctx->state[4], output, 16 );
326 * output = SHA-1( input buffer )
328 void sha1( unsigned char *input, int ilen, unsigned char output[20] )
334 sha1_finish( &ctx, output );
340 * output
[all...]
/openwrt/package/network/utils/iwcap/src/
H A Diwcap.c301 const char *output = NULL; local
343 output = optarg;
370 " Write current ringbuffer contents to given output file\n"
392 if (!streaming && !output)
394 msg("No output file specified\n");
398 if (streaming && output)
472 msg(" * Dumping data to file %s\n", output);
507 msg("Dumping ring to %s ...\n", output);
509 if (!(o = fopen(output, "w")))
512 output, strerro
[all...]
/openwrt/target/linux/adm8668/image/
H A Dmy-mkimage9 echo usage: $0 loader.bin [rootfs.squashfs [fs_mark [...]]] output.bin
/openwrt/package/boot/imx-bootlets/
H A DMakefile36 $(INSTALL_BIN) $(PKG_BUILD_DIR)/linux_prep/output-target/linux_prep $(STAGING_DIR)/linux_prep
/openwrt/target/linux/adm5120/image/lzma-loader/src/
H A Dprintf.c35 lp_Print(void (*output)(void *, char *, int),
43 (*output)(arg, (char*)theFatalMsg, sizeof(theFatalMsg)-1); for(;;); \
45 (*output)(arg, s, l); \
210 /* output this char as it is */
/openwrt/target/linux/ar71xx/image/lzma-loader/src/
H A Dprintf.c35 lp_Print(void (*output)(void *, char *, int),
43 (*output)(arg, (char*)theFatalMsg, sizeof(theFatalMsg)-1); for(;;); \
45 (*output)(arg, s, l); \
210 /* output this char as it is */
/openwrt/target/linux/brcm63xx/image/lzma-loader/src/
H A Dprintf.c35 lp_Print(void (*output)(void *, char *, int),
43 (*output)(arg, (char*)theFatalMsg, sizeof(theFatalMsg)-1); for(;;); \
45 (*output)(arg, s, l); \
210 /* output this char as it is */
/openwrt/target/linux/lantiq/image/lzma-loader/src/
H A Dprintf.c35 lp_Print(void (*output)(void *, char *, int),
43 (*output)(arg, (char*)theFatalMsg, sizeof(theFatalMsg)-1); for(;;); \
45 (*output)(arg, s, l); \
210 /* output this char as it is */
/openwrt/target/linux/ramips/image/lzma-loader/src/
H A Dprintf.c35 lp_Print(void (*output)(void *, char *, int),
43 (*output)(arg, (char*)theFatalMsg, sizeof(theFatalMsg)-1); for(;;); \
45 (*output)(arg, s, l); \
210 /* output this char as it is */
/openwrt/target/linux/brcm63xx/image/
H A DMakefile64 # Also I think lzma has a bug cause it generates different output depending on
111 --output $@ --boardid $(CFE_BOARD_ID) --chipid $(CFE_CHIP_ID) \
129 --output $@ --boardid $(CFE_BOARD_ID) --chipid $(CFE_CHIP_ID) \
/openwrt/package/network/services/ead/src/
H A Dpw_encrypt_md5.c103 * __md5_Encodes input (uint32_t) into output (unsigned char). Assumes len is
107 __md5_Encode(unsigned char *output, uint32_t *input, unsigned int len) argument
112 output[j] = input[i];
113 output[j+1] = (input[i] >> 8);
114 output[j+2] = (input[i] >> 16);
115 output[j+3] = (input[i] >> 24);
120 * __md5_Decodes input (unsigned char) into output (uint32_t). Assumes len is
124 __md5_Decode(uint32_t *output, const unsigned char *input, unsigned int len) argument
129 output[i] = ((uint32_t)input[j]) | (((uint32_t)input[j+1]) << 8) |
566 /* Now make the output strin
[all...]

Completed in 296 milliseconds

12