Home
last modified time | relevance | path

Searched refs:append_file (Results 1 – 7 of 7) sorted by relevance

/external/ImageMagick/scripts/
Dtxt2html203 $append_file = 0; # If you want something appended by
396 $append_file = $ARGV[1];
406 $append_file = 0;
939 if ($append_file)
941 if(-r $append_file)
943 open(APPEND, $append_file);
946 print STDERR "Can't find or read file $append_file to append.\n";
/external/squashfs-tools/squashfs-tools/
Dmksquashfs.h115 struct append_file { struct
117 struct append_file *next; argument
150 extern struct append_file **file_mapping;
Dprocess_fragments.c223 struct append_file *append; in get_fragment_cksum()
Dmksquashfs.c321 struct append_file **file_mapping;
1579 struct append_file *append; in get_fragment_checksum()
1930 struct append_file *append_file; in add_file() local
1964 append_file = malloc(sizeof(struct append_file)); in add_file()
1965 if(append_file == NULL) in add_file()
1968 append_file->file = file; in add_file()
1969 append_file->next = file_mapping[fragment]; in add_file()
1970 file_mapping[fragment] = append_file; in add_file()
Dread_fs.c221 file_mapping = calloc(sBlk->fragments, sizeof(struct append_file *)); in scan_inode_table()
/external/autotest/client/cros/faft/utils/
Dos_interface.py137 def append_file(self, path, data): member in OSInterface
139 self.shell.append_file(path, data)
Dshell_wrapper.py145 def append_file(self, path, data): member in LocalShell