Searched refs:new_data (Results 1 - 14 of 14) sorted by relevance

/macosx-10.10/MITKerberosShim-66/profile/
H A Dprof_set.c47 prf_data_t new_data; local
48 new_data = profile_make_prf_data(file->data->filespec);
49 if (new_data == NULL) {
52 retval = pthread_mutex_init(&new_data->lock, NULL);
54 new_data->root = NULL;
55 new_data->flags = file->data->flags & ~(PROFILE_FILE_SHARED | PROFILE_FILE_HAVE_DATA);
56 new_data->timestamp = 0;
57 new_data->upd_serial = file->data->upd_serial;
63 free(new_data);
67 file->data = new_data;
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/asn1/
H A Da_enum.c158 unsigned char *new_data=OPENSSL_realloc(ret->data, len+4); local
159 if (!new_data)
164 ret->data=new_data;
H A Da_int.c425 unsigned char *new_data=OPENSSL_realloc(ret->data, len+4); local
426 if (!new_data)
431 ret->data=new_data;
/macosx-10.10/ruby-106/ruby/lib/
H A Dpstore.rb429 new_data = dump(@table)
431 if new_data.bytesize != original_file_size || Digest::MD5.digest(new_data) != original_checksum
434 save_data_with_atomic_file_rename_strategy(new_data, file)
436 save_data_with_fast_strategy(new_data, file)
440 new_data.replace(EMPTY_STRING)
/macosx-10.10/emacs-93/emacs/src/
H A Dralloc.c195 POINTER new_data; /* temporarily used for relocation */
445 new_bloc->new_data = 0;
479 Store the new location of each bloc in its new_data field.
532 b->new_data = address;
692 b->data = b->new_data;
696 safe_bcopy (b->data, b->new_data, b->size);
697 *b->variable = b->data = b->new_data;
703 bloc->data = bloc->new_data;
707 safe_bcopy (bloc->data, bloc->new_data, old_size);
708 bzero ((char *) bloc->new_data
193 POINTER new_data; /* temporarily used for relocation */ member in struct:bp
[all...]
/macosx-10.10/apr-32/apr/apr/tables/
H A Dapr_tables.c111 char *new_data; local
113 new_data = apr_palloc(arr->pool, arr->elt_size * new_size);
115 memcpy(new_data, arr->elts, arr->nalloc * arr->elt_size);
116 memset(new_data + arr->nalloc * arr->elt_size, 0,
118 arr->elts = new_data;
130 char *new_data; local
132 new_data = apr_palloc(arr->pool, arr->elt_size * new_size);
134 memcpy(new_data, arr->elts, arr->nalloc * arr->elt_size);
135 arr->elts = new_data;
150 char *new_data; local
[all...]
/macosx-10.10/OpenSSH-189/osslshim/ossl-asn1/
H A Dcs-a-int.c436 unsigned char *new_data=realloc(ret->data, len+4); local
437 if (!new_data)
442 ret->data=new_data;
/macosx-10.10/curl-83.1.2/curl/tests/
H A Dhttp_pipe.py384 new_data = self.request.recv(MAX_REQUEST_SIZE)
386 if not new_data:
388 new_requests = self._request_parser.ParseAdditionalData(new_data)
/macosx-10.10/Security-57031.1.35/Security/sec/securityd/Regressions/
H A DSOSAccountTesting.h359 bool new_data = false; local
364 new_data = ProcessChangesOnceV(changes, argp_copy);
369 } while (new_data);
/macosx-10.10/passwordserver_sasl-193/cyrus_sasl/utils/
H A Dtestsuite.c243 mem_info_t *new_data; local
251 new_data = malloc(sizeof(mem_info_t));
252 if(!new_data) return out;
254 new_data->addr = out;
255 new_data->size = size;
256 new_data->next = head;
257 head = new_data;
306 mem_info_t *new_data; local
315 new_data = malloc(sizeof(mem_info_t));
316 if(!new_data) retur
[all...]
/macosx-10.10/BerkeleyDB-21/db/perl/DB_File/t/
H A Ddb-recno.t263 my @new_data = qw(add this to the start of the array) ;
264 $FA ? unshift (@h, @new_data) : $X->unshift (@new_data) ;
265 unshift (@data, @new_data) ;
/macosx-10.10/vim-55/src/
H A Dmemline.c4812 char_u *new_data; local
4818 new_data = (char_u *)alloc(size);
4819 if (new_data == NULL)
4826 mch_memmove(new_data, dp, head_end - (char_u *)dp);
4831 crypt_encode(text_start, text_len, new_data + dp->db_txt_start);
4836 vim_memset(new_data + (head_end - data), 0, text_start - head_end);
4838 return new_data;
/macosx-10.10/OpenSSH-189/openssh/
H A Dchannels.c3758 char *new_data; local
3803 new_data = tohex(x11_fake_data, data_len);
3813 packet_put_cstring(new_data);
3817 xfree(new_data);
/macosx-10.10/ntfs-84/kext/
H A Dntfs_index.c4035 u8 *new_data; local
4037 new_data = (u8*)entry + data_ofs;
4041 memcpy(new_data, data, data_len);

Completed in 524 milliseconds