search for: hashname

Displaying 5 results from an estimated 5 matches for "hashname".

2004 Feb 09
1
[patch] Add `--link-by-hash' option.
...+void kill_hashfiles(struct hashfile_struct *hashfiles) +{ + struct hashfile_struct *iter, *next; + if ((iter = hashfiles) != NULL) { + do { + next = iter->next; + kill_hashfile(iter); + iter = next; + } while (iter != hashfiles); + } +} + + +struct hashfile_struct *find_hashfiles(char *hashname, int64 size, long *fnbr) +{ + DIR *d; + struct dirent *di; + struct hashfile_struct *hashfiles = NULL, *hashfile; + STRUCT_STAT st; + long this_fnbr; + + *fnbr = 0; + + /* Build a list of potential candidates and open + * them. */ + if ((d = opendir(hashname)) == NULL) { + rprintf(FERROR,"o...
2004 Feb 23
0
[patch] Add `--link-by-hash' option (rev 4).
...+void kill_hashfiles(struct hashfile_struct *hashfiles) +{ + struct hashfile_struct *iter, *next; + if ((iter = hashfiles) != NULL) { + do { + next = iter->next; + kill_hashfile(iter); + iter = next; + } while (iter != hashfiles); + } +} + + +struct hashfile_struct *find_hashfiles(char *hashname, int64 size, long *fnbr) +{ + DIR *d; + struct dirent *di; + struct hashfile_struct *hashfiles = NULL, *hashfile; + STRUCT_STAT st; + long this_fnbr; + + *fnbr = 0; + + /* Build a list of potential candidates and open + * them. */ + if ((d = opendir(hashname)) == NULL) { + rprintf(FERROR,"o...
2004 Feb 17
0
[patch] Add `--link-by-hash' option (rev 3).
...+void kill_hashfiles(struct hashfile_struct *hashfiles) +{ + struct hashfile_struct *iter, *next; + if ((iter = hashfiles) != NULL) { + do { + next = iter->next; + kill_hashfile(iter); + iter = next; + } while (iter != hashfiles); + } +} + + +struct hashfile_struct *find_hashfiles(char *hashname, int64 size, long *fnbr) +{ + DIR *d; + struct dirent *di; + struct hashfile_struct *hashfiles = NULL, *hashfile; + STRUCT_STAT st; + long this_fnbr; + + *fnbr = 0; + + /* Build a list of potential candidates and open + * them. */ + if ((d = opendir(hashname)) == NULL) { + rprintf(FERROR,"o...
2004 Feb 23
0
[patch] Add `--link-by-hash' option (rev 5).
...+void kill_hashfiles(struct hashfile_struct *hashfiles) +{ + struct hashfile_struct *iter, *next; + if ((iter = hashfiles) != NULL) { + do { + next = iter->next; + kill_hashfile(iter); + iter = next; + } while (iter != hashfiles); + } +} + + +struct hashfile_struct *find_hashfiles(char *hashname, int64 size, long *fnbr) +{ + DIR *d; + struct dirent *di; + struct hashfile_struct *hashfiles = NULL, *hashfile; + STRUCT_STAT st; + long this_fnbr; + + *fnbr = 0; + + /* Build a list of potential candidates and open + * them. */ + if ((d = opendir(hashname)) == NULL) { + rprintf(FERROR,"o...
2004 Feb 16
1
[patch] Add `--link-by-hash' option (rev 2).
...+void kill_hashfiles(struct hashfile_struct *hashfiles) +{ + struct hashfile_struct *iter, *next; + if ((iter = hashfiles) != NULL) { + do { + next = iter->next; + kill_hashfile(iter); + iter = next; + } while (iter != hashfiles); + } +} + + +struct hashfile_struct *find_hashfiles(char *hashname, int64 size, long *fnbr) +{ + DIR *d; + struct dirent *di; + struct hashfile_struct *hashfiles = NULL, *hashfile; + STRUCT_STAT st; + long this_fnbr; + + *fnbr = 0; + + /* Build a list of potential candidates and open + * them. */ + if ((d = opendir(hashname)) == NULL) { + rprintf(FERROR,"o...