/freebsd/contrib/libarchive/libarchive/test/ |
H A D | read_open_memory.c | 88 struct read_memory_data *mine = NULL; in read_open_memory_internal() 99 mine = malloc(sizeof(*mine)); in read_open_memory_internal() 100 if (mine == NULL) { in read_open_memory_internal() 104 memset(mine, 0, sizeof(*mine)); in read_open_memory_internal() 105 mine->start = mine->p = (const unsigned char *)buff; in read_open_memory_internal() 106 mine->end = mine in read_open_memory_internal() 89 struct read_memory_data *mine = NULL; read_open_memory_internal() local 141 struct read_memory_data *mine = (struct read_memory_data *)client_data; memory_read() local 167 struct read_memory_data *mine = (struct read_memory_data *)client_data; memory_read_skip() local 185 struct read_memory_data *mine = (struct read_memory_data *)client_data; memory_read_seek() local 216 struct read_memory_data *mine = (struct read_memory_data *)client_data; memory_read_close() local [all...] |
H A D | test_archive_read_multiple_data_objects.c | 246 struct mydata *mine = (struct mydata *)data; in file_seek() local 250 r = lseek(mine->fd, request, whence); in file_seek()
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_read_open_memory.c | 70 struct read_memory_data *mine; in archive_read_open_memory2() local 72 mine = calloc(1, sizeof(*mine)); in archive_read_open_memory2() 73 if (mine == NULL) { in archive_read_open_memory2() 77 mine->start = mine->p = (const unsigned char *)buff; in archive_read_open_memory2() 78 mine->end = mine->start + size; in archive_read_open_memory2() 79 mine->read_size = read_size; in archive_read_open_memory2() 85 archive_read_set_callback_data(a, mine); in archive_read_open_memory2() 110 struct read_memory_data *mine = (struct read_memory_data *)client_data; in memory_read() local 114 *buff = mine->p; in memory_read() 115 size = mine->end - mine->p; in memory_read() [all …]
|
H A D | archive_read_open_filename.c | 115 struct read_file_data *mine; in archive_read_open_filenames() local 125 mine = calloc(1, in archive_read_open_filenames() 126 sizeof(*mine) + strlen(filename)); in archive_read_open_filenames() 127 if (mine == NULL) in archive_read_open_filenames() 129 strcpy(mine->filename.m, filename); in archive_read_open_filenames() 130 mine->block_size = block_size; in archive_read_open_filenames() 131 mine->fd = -1; in archive_read_open_filenames() 132 mine->buffer = NULL; in archive_read_open_filenames() 133 mine->st_mode = mine->use_lseek = 0; in archive_read_open_filenames() 135 mine->filename_type = FNT_STDIN; in archive_read_open_filenames() [all …]
|
H A D | archive_write_open_memory.c | 53 struct write_memory_data *mine; in archive_write_open_memory() local 55 mine = calloc(1, sizeof(*mine)); in archive_write_open_memory() 56 if (mine == NULL) { in archive_write_open_memory() 60 mine->buff = buff; in archive_write_open_memory() 61 mine->size = buffSize; in archive_write_open_memory() 62 mine->client_size = used; in archive_write_open_memory() 63 return (archive_write_open2(a, mine, in archive_write_open_memory() 70 struct write_memory_data *mine; in memory_write_open() local 71 mine = client_data; in memory_write_open() 72 mine->used = 0; in memory_write_open() [all …]
|
H A D | archive_read_open_file.c | 67 struct read_FILE_data *mine; in archive_read_open_FILE() local 72 mine = malloc(sizeof(*mine)); in archive_read_open_FILE() 74 if (mine == NULL || b == NULL) { in archive_read_open_FILE() 76 free(mine); in archive_read_open_FILE() 80 mine->block_size = block_size; in archive_read_open_FILE() 81 mine->buffer = b; in archive_read_open_FILE() 82 mine->f = f; in archive_read_open_FILE() 89 if (fstat(fileno(mine->f), &st) == 0 && S_ISREG(st.st_mode)) { in archive_read_open_FILE() 92 mine->can_skip = 1; in archive_read_open_FILE() 94 mine->can_skip = 0; in archive_read_open_FILE() [all …]
|
H A D | archive_read_open_fd.c | 68 struct read_fd_data *mine; in archive_read_open_fd() local 77 mine = calloc(1, sizeof(*mine)); in archive_read_open_fd() 79 if (mine == NULL || b == NULL) { in archive_read_open_fd() 81 free(mine); in archive_read_open_fd() 85 mine->block_size = block_size; in archive_read_open_fd() 86 mine->buffer = b; in archive_read_open_fd() 87 mine->fd = fd; in archive_read_open_fd() 97 mine->use_lseek = 1; in archive_read_open_fd() 100 setmode(mine->fd, O_BINARY); in archive_read_open_fd() 107 archive_read_set_callback_data(a, mine); in archive_read_open_fd() [all …]
|
H A D | archive_write_open_filename.c | 98 struct write_file_data *mine; in open_filename() local 101 mine = calloc(1, sizeof(*mine)); in open_filename() 102 if (mine == NULL) { in open_filename() 107 r = archive_mstring_copy_mbs(&mine->filename, filename); in open_filename() 109 r = archive_mstring_copy_wcs(&mine->filename, filename); in open_filename() 125 mine->fd = -1; in open_filename() 126 return (archive_write_open2(a, mine, in open_filename() 134 struct write_file_data *mine; in file_open() local 142 mine = (struct write_file_data *)client_data; in file_open() 150 if (archive_mstring_get_wcs(a, &mine->filename, &wcs) != 0) { in file_open() [all …]
|
H A D | archive_write_open_fd.c | 63 struct write_fd_data *mine; in archive_write_open_fd() local 65 mine = malloc(sizeof(*mine)); in archive_write_open_fd() 66 if (mine == NULL) { in archive_write_open_fd() 70 mine->fd = fd; in archive_write_open_fd() 72 setmode(mine->fd, O_BINARY); in archive_write_open_fd() 74 return (archive_write_open2(a, mine, in archive_write_open_fd() 81 struct write_fd_data *mine; in file_open() local 84 mine = (struct write_fd_data *)client_data; in file_open() 86 if (fstat(mine->fd, &st) != 0) { in file_open() 87 archive_set_error(a, errno, "Couldn't stat fd %d", mine->fd); in file_open() [all …]
|
H A D | archive_write_open_file.c | 60 struct write_FILE_data *mine; in archive_write_open_FILE() local 62 mine = malloc(sizeof(*mine)); in archive_write_open_FILE() 63 if (mine == NULL) { in archive_write_open_FILE() 67 mine->f = f; in archive_write_open_FILE() 68 return (archive_write_open2(a, mine, file_open, file_write, in archive_write_open_FILE() 84 struct write_FILE_data *mine; in file_write() local 87 mine = client_data; in file_write() 89 bytesWritten = fwrite(buff, 1, length, mine->f); in file_write() 103 struct write_FILE_data *mine = client_data; in file_free() local 106 if (mine == NULL) in file_free() [all …]
|
/freebsd/usr.bin/diff3/tests/ |
H A D | long-merge.out | 4 This line is different in mine, not better 12 This line is different in yours and mine, but the same 14 This line is different in yours and mine, the same is in both 21 This line is different in yours and mine, best change in mine 23 This line is different in yours and mine, but the different in each 25 This line is different in yours and mine, but the best in yours
|
H A D | long-A.out | 4 This line is different in yours and mine, but the different in each 6 This line is different in yours and mine, but the best in yours 17 This line is different in yours and mine, but the same
|
H A D | long-m.txt | 4 This line is different in mine, not better 11 This line is different in yours and mine, the same is in both 16 This line is different in yours and mine, best change in mine
|
H A D | long-y.txt | 4 This line is different in mine 11 This line is different in yours and mine, the same is in both 16 This line is different in yours and mine, but the best in yours 21 This line is deleted in mine
|
H A D | long-o.txt | 4 This line is different in mine 11 This line is different in yours and mine, but the same 16 This line is different in yours and mine, but the different in each 21 This line is deleted in mine
|
H A D | long-ed.out | 3 This line is different in yours and mine, but the best in yours
|
/freebsd/contrib/tcsh/nls/et/ |
H A D | set3 | 109 107 Vi asenda kursori alune sümbol ja mine sisesamisre¸iimi 111 109 Vi mine eelmise sõna juurde 112 110 Vi mine järgmise sõna juurde 114 112 Vi mine rea algusse
|
/freebsd/share/misc/ |
H A D | flowers | 11 Clover:Be mine.
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | bib | 359 And Abram said to the king of Sodom, I have lift up mine hand unto the LORD, the most high God, the… 364 And Abram said, Behold, to me thou hast given no seed: and, lo, one born in my house is mine heir. 625 And there was set meat before him to eat: but he said, I will not eat, until I have told mine erran… 637 And before I had done speaking in mine heart, behold, Rebekah came forth with her pitcher on her sh… 856 …born Joseph, that Jacob said unto Laban, Send me away, that I may go unto mine own place, and to m… 861 …d the LORD hath blessed thee since my coming: and now when shall I provide for mine own house also? 884 And it came to pass at the time that the cattle conceived, that I lifted up mine eyes, and saw in a… 914 …; in the day the drought consumed me, and the frost by night; and my sleep departed from mine eyes. 916 …had been with me, surely thou hadst sent me away now empty. God hath seen mine affliction and the … 917 …e my children, and these cattle are my cattle, and all that thou seest is mine: and what can I do … [all …]
|
/freebsd/usr.sbin/etcupdate/ |
H A D | etcupdate.sh | 956 (mf) mine-full - accept local version of entire file (ignore new changes) 962 # For mine-full, just delete the
|
/freebsd/sys/dev/isp/ |
H A D | Hardware.txt | 145 I paid 1000$ for mine- overprice, IMO.
|
/freebsd/contrib/diff/doc/ |
H A D | diff.texi | 2149 diff3 @var{mine} @var{older} @var{yours} 2159 adding the result to @var{mine}, or as merging into @var{mine} the 2161 well-defined as long as @var{mine} and @var{older} match in the 2190 into @var{mine} with the @option{-e} or @option{--ed} option. You can 2196 @dfn{unmerged changes}, i.e.@: changes where @var{mine} and @var{yours} 2198 @var{mine} and @var{yours} are identical, because they assume that such 3943 diff3 @var{options}@dots{} @var{mine} @var{older} @var{yours} 3946 The files to compare are @var{mine}, @var{older}, and @var{yours}. 3975 @var{mine}, surrounding conflicts with bracket lines. 3985 @var{older} to @var{yours} into @var{mine}. @xref{Which Changes}. [all …]
|
/freebsd/stand/ficl/softwords/ |
H A D | oo.fr | 573 \ object --> sub mine hasvtable
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | games | 87 0 string 5\x0athe_Lost_Mine Quake I save: hip1m3 The lost mine
|
/freebsd/share/dict/ |
H A D | web2a | 6773 bog mine 12624 coal mine 13763 copper mine 16118 deep-level mine 16561 diamond mine 17986 drift mine 25322 gold mine 30506 iron-mine 32018 land mine 34266 magnetic mine [all …]
|