Searched refs:append_file (Results 1 – 7 of 7) sorted by relevance
203 $append_file = 0; # If you want something appended by396 $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";
115 struct append_file { struct117 struct append_file *next; argument150 extern struct append_file **file_mapping;
223 struct append_file *append; in get_fragment_cksum()
321 struct append_file **file_mapping;1579 struct append_file *append; in get_fragment_checksum()1930 struct append_file *append_file; in add_file() local1964 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()
221 file_mapping = calloc(sBlk->fragments, sizeof(struct append_file *)); in scan_inode_table()
137 def append_file(self, path, data): member in OSInterface139 self.shell.append_file(path, data)
145 def append_file(self, path, data): member in LocalShell