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.c320 struct append_file **file_mapping;
1578 struct append_file *append; in get_fragment_checksum()
1929 struct append_file *append_file; in add_file() local
1963 append_file = malloc(sizeof(struct append_file)); in add_file()
1964 if(append_file == NULL) in add_file()
1967 append_file->file = file; in add_file()
1968 append_file->next = file_mapping[fragment]; in add_file()
1969 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/
Dshell_wrapper.py84 def append_file(self, path, data): member in LocalShell
176 def append_file(self, path, data): member in AdbShell
181 self._host_shell.append_file(f.name, data)
Dos_interface.py147 def append_file(self, path, data): member in OSInterface
149 self.shell.append_file(path, data)