Searched refs:mine (Results 1 - 25 of 34) sorted by relevance

12

/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/startup-files/apple/
H A Denvironment22 if [ -f ${bash_initdir}/environment.mine ]; then
23 source ${bash_initdir}/environment.mine
H A Dlogin13 if (-r ${bash_initdir}/login.mine) then
14 source ${bash_initdir}/login.mine
H A Daliases32 if [ -r ${bash_initdir}/aliases.mine ]; then
33 source ${bash_initdir}/aliases.mine
H A Drc56 if [ -f ${bash_initdir}/rc.mine ]; then source ${bash_initdir}/rc.mine; fi
/macosx-10.10.1/libarchive-30/libarchive/libarchive/
H A Darchive_write_open_memory.c66 struct write_memory_data *mine; local
68 mine = (struct write_memory_data *)malloc(sizeof(*mine));
69 if (mine == NULL) {
73 memset(mine, 0, sizeof(*mine));
74 mine->buff = buff;
75 mine->size = buffSize;
76 mine->client_size = used;
77 return (archive_write_open(a, mine,
84 struct write_memory_data *mine; local
104 struct write_memory_data *mine; local
121 struct write_memory_data *mine; local
[all...]
H A Darchive_read_open_fd.c72 struct read_fd_data *mine; local
81 mine = (struct read_fd_data *)malloc(sizeof(*mine));
83 if (mine == NULL || b == NULL) {
85 free(mine);
89 mine->block_size = block_size;
90 mine->buffer = b;
91 mine->fd = fd;
101 mine->can_skip = 1;
103 mine
115 struct read_fd_data *mine = (struct read_fd_data *)client_data; local
134 struct read_fd_data *mine = (struct read_fd_data *)client_data; local
180 struct read_fd_data *mine = (struct read_fd_data *)client_data; local
[all...]
H A Darchive_read_open_memory.c73 struct read_memory_data *mine; local
75 mine = (struct read_memory_data *)malloc(sizeof(*mine));
76 if (mine == NULL) {
80 memset(mine, 0, sizeof(*mine));
81 mine->buffer = (unsigned char *)buff;
82 mine->end = mine->buffer + size;
83 mine
109 struct read_memory_data *mine = (struct read_memory_data *)client_data; local
134 struct read_memory_data *mine = (struct read_memory_data *)client_data; local
152 struct read_memory_data *mine = (struct read_memory_data *)client_data; local
[all...]
H A Darchive_read_open_filename.c86 struct read_file_data *mine; local
118 mine = (struct read_file_data *)calloc(1,
119 sizeof(*mine) + strlen(filename));
121 if (mine == NULL || b == NULL) {
123 free(mine);
127 strcpy(mine->filename, filename);
128 mine->block_size = block_size;
129 mine->buffer = b;
130 mine->fd = fd;
132 mine
159 struct read_file_data *mine = (struct read_file_data *)client_data; local
182 struct read_file_data *mine = (struct read_file_data *)client_data; local
236 struct read_file_data *mine = (struct read_file_data *)client_data; local
[all...]
H A Darchive_read_open_file.c72 struct read_FILE_data *mine; local
77 mine = (struct read_FILE_data *)malloc(sizeof(*mine));
79 if (mine == NULL || b == NULL) {
81 free(mine);
85 mine->block_size = block_size;
86 mine->buffer = b;
87 mine->f = f;
93 if (fstat(fileno(mine->f), &st) == 0 && S_ISREG(st.st_mode)) {
96 mine
111 struct read_FILE_data *mine = (struct read_FILE_data *)client_data; local
130 struct read_FILE_data *mine = (struct read_FILE_data *)client_data; local
158 struct read_FILE_data *mine = (struct read_FILE_data *)client_data; local
[all...]
H A Darchive_write_open_fd.c65 struct write_fd_data *mine; local
67 mine = (struct write_fd_data *)malloc(sizeof(*mine));
68 if (mine == NULL) {
72 mine->fd = fd;
74 setmode(mine->fd, O_BINARY);
76 return (archive_write_open(a, mine,
83 struct write_fd_data *mine; local
86 mine = (struct write_fd_data *)client_data;
88 if (fstat(mine
121 struct write_fd_data *mine; local
136 struct write_fd_data *mine = (struct write_fd_data *)client_data; local
[all...]
H A Darchive_write_open_filename.c72 struct write_file_data *mine; local
77 mine = (struct write_file_data *)malloc(sizeof(*mine) + strlen(filename));
78 if (mine == NULL) {
82 strcpy(mine->filename, filename);
83 mine->fd = -1;
84 return (archive_write_open(a, mine,
92 struct write_file_data *mine; local
95 mine = (struct write_file_data *)client_data;
101 mine
141 struct write_file_data *mine; local
156 struct write_file_data *mine = (struct write_file_data *)client_data; local
[all...]
H A Darchive_write_open_file.c61 struct write_FILE_data *mine; local
63 mine = (struct write_FILE_data *)malloc(sizeof(*mine));
64 if (mine == NULL) {
68 mine->f = f;
69 return (archive_write_open(a, mine,
85 struct write_FILE_data *mine; local
88 mine = client_data;
89 bytesWritten = fwrite(buff, 1, length, mine->f);
100 struct write_FILE_data *mine local
[all...]
/macosx-10.10.1/libarchive-30/libarchive/libarchive/test/
H A Dread_open_memory.c78 struct read_memory_data *mine; local
80 mine = (struct read_memory_data *)malloc(sizeof(*mine));
81 if (mine == NULL) {
85 memset(mine, 0, sizeof(*mine));
86 mine->buffer = (unsigned char *)buff;
87 mine->end = mine->buffer + size;
88 mine
121 struct read_memory_data *mine = (struct read_memory_data *)client_data; local
143 struct read_memory_data *mine = (struct read_memory_data *)client_data; local
162 struct read_memory_data *mine = (struct read_memory_data *)client_data; local
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Dalloc.h149 : allocator(alloc), mine(NULL) { }
151 : allocator(alloc), mine(p) { }
153 : allocator(Allocator::standard()), mine(p) { }
155 : allocator(src.allocator), mine(src.release()) { }
157 : allocator(alloc), mine(src.release()) { assert(allocator == src.allocator); }
159 ~CssmAutoPtr() { allocator.free(mine); }
161 T *get() const throw() { return mine; }
162 T *release() { T *result = mine; mine = NULL; return result; }
163 void reset() { allocator.free(mine); min
170 T *mine; member in class:Security::CssmAutoPtr
193 void *mine; member in class:Security::CssmAutoPtr
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dalloc.h149 : allocator(alloc), mine(NULL) { }
151 : allocator(alloc), mine(p) { }
153 : allocator(Allocator::standard()), mine(p) { }
155 : allocator(src.allocator), mine(src.release()) { }
157 : allocator(alloc), mine(src.release()) { assert(allocator == src.allocator); }
159 ~CssmAutoPtr() { allocator.free(mine); }
161 T *get() const throw() { return mine; }
162 T *release() { T *result = mine; mine = NULL; return result; }
163 void reset() { allocator.free(mine); min
170 T *mine; member in class:Security::CssmAutoPtr
193 void *mine; member in class:Security::CssmAutoPtr
[all...]
/macosx-10.10.1/disklabel-6/
H A Dstatus.c41 ino_t mine; local
65 mine = sbuf.st_ino;
78 if (dp->d_fileno == mine) {
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dposix_signals.c113 struct sigvec mine = { local
118 if (sigvec(sig, &mine, NULL))
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dmaint-tool226 $mine{$f} = "\$(INCDIR)/$f";
229 $mine{'config.h'} = "config.h";
234 $mine{$f} = "\$(srcdir)/$f";
237 $mine{'config.h'} = "config.h";
258 next unless $mine{$p};
273 $d = $mine{$dt};
/macosx-10.10.1/Security-57031.1.35/Security/include/security_codesigning/
H A DCode.cpp65 CFDataRef mine = this->cdHash(); local
67 if (mine || his)
68 return mine && his && CFEqual(mine, his);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A DCode.cpp65 CFDataRef mine = this->cdHash(); local
67 if (mine || his)
68 return mine && his && CFEqual(mine, his);
/macosx-10.10.1/Security-57031.1.35/Security/include/security_cdsa_utilities/
H A Dcssmdata.h277 CssmOwnedData(Allocator &alloc, CssmData &mine) : CssmManagedData(alloc), referent(mine) { } argument
279 CssmOwnedData(Allocator &alloc, CSSM_DATA &mine) argument
280 : CssmManagedData(alloc), referent(CssmData::overlay(mine)) { referent.clear(); }
431 CssmRemoteData(Allocator &alloc, CssmData &mine) argument
432 : CssmOwnedData(alloc, mine), iOwnTheData(true) { }
434 CssmRemoteData(Allocator &alloc, CSSM_DATA &mine) argument
435 : CssmOwnedData(alloc, mine), iOwnTheData(true) { }
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cdsa_utilities/lib/
H A Dcssmdata.h277 CssmOwnedData(Allocator &alloc, CssmData &mine) : CssmManagedData(alloc), referent(mine) { } argument
279 CssmOwnedData(Allocator &alloc, CSSM_DATA &mine) argument
280 : CssmManagedData(alloc), referent(CssmData::overlay(mine)) { referent.clear(); }
431 CssmRemoteData(Allocator &alloc, CssmData &mine) argument
432 : CssmOwnedData(alloc, mine), iOwnTheData(true) { }
434 CssmRemoteData(Allocator &alloc, CSSM_DATA &mine) argument
435 : CssmOwnedData(alloc, mine), iOwnTheData(true) { }
/macosx-10.10.1/Libnotify-133.1.1/
H A Dnotify_client.c115 static void notify_retain_mach_port(mach_port_t mp, int mine);
776 notify_retain_mach_port(mach_port_t mp, int mine) argument
825 globals->mp_mine[x] = mine;
1572 int token, mine;
1584 mine = 0;
1591 mine = 1;
1599 if (mine == 1) mach_port_mod_refs(task, *notify_port, MACH_PORT_RIGHT_RECEIVE, -1);
1608 if (mine == 1)
1621 if (mine == 1)
1634 notify_retain_mach_port(*notify_port, mine);
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dsmerge-mode.el73 Used in `smerge-diff-base-mine' and related functions."
82 (defface smerge-mine
94 (put 'smerge-mine-face 'face-alias 'smerge-mine)
95 (defvar smerge-mine-face 'smerge-mine)
144 ("m" . smerge-keep-mine)
150 ("=<" "base-mine" . smerge-diff-base-mine)
152 ("==" "mine
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/rdoc/
H A Dclass_module.rb484 # Merges collection +mine+ with +other+ preferring other. +other_files+ is
498 def merge_collections mine, other, other_files, &block # :nodoc:
499 my_things = mine. group_by { |thing| thing.file }

Completed in 344 milliseconds

12