Searched refs:record (Results 26 - 50 of 547) sorted by relevance

1234567891011>>

/macosx-10.9.5/dtrace-118.1/test/tst/common/inline/
H A Dtst.InlineWritableAssign.d39 struct record {
44 struct record rec1;
45 inline struct record rec2 = rec1;
/macosx-10.9.5/dtrace-118.1/test/tst/common/struct/
H A Derr.D_PROTO_ARG.DupStructAssoc.d40 struct record {
50 struct record r1;
51 struct record r2;
/macosx-10.9.5/dtrace-118.1/test/tst/common/union/
H A Derr.D_PROTO_ARG.DupUnionAssoc.d40 union record {
50 union record r1;
51 union record r2;
/macosx-10.9.5/Heimdal-323.92.1/lib/akadmin/
H A Dadmin.c64 ODRecordRef record; local
82 record = ODNodeCopyRecord(node, type, recordname, NULL, NULL);
83 if (record == NULL)
86 return record;
94 ODRecordRef record = NULL; local
98 errx(1, "missing record");
100 record = find_record(argv[0]);
101 if (record == NULL)
111 if (HeimODCreatePrincipalData(node, record, NULL, principal, NULL)) {
119 if (record)
131 ODRecordRef record; local
181 ODRecordRef record = NULL; local
254 principal_opflags(int argc, char **argv, void (^op)(ODNodeRef node, ODRecordRef record, CFStringRef flag)) argument
256 ODRecordRef record = NULL; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DTimelinePresentationModel.js116 * @param {Object} record
118 WebInspector.TimelinePresentationModel.recordStyle = function(record)
121 var result = recordStyles[record.type];
124 title: WebInspector.UIString("Unknown: %s", record.type),
127 recordStyles[record.type] = result;
132 WebInspector.TimelinePresentationModel.categoryForRecord = function(record)
134 return WebInspector.TimelinePresentationModel.recordStyle(record).category;
137 WebInspector.TimelinePresentationModel.isEventDivider = function(record)
140 if (record.type === recordTypes.TimeStamp)
142 if (record
[all...]
H A DTimelinePanel.js240 this.toggleTimelineButton = new WebInspector.StatusBarButton(WebInspector.UIString("Record"), "record-profile-status-bar-item");
476 var record = eventDividerRecords[i];
477 var positions = this._calculator.computeBarGraphWindowPosition(record);
481 var divider = WebInspector.TimelinePresentationModel.createEventDivider(record.type, record.title);
594 WebInspector.userMetrics.TimelineStarted.record();
639 _innerAddRecordToTimeline: function(record)
641 if (record.type === WebInspector.TimelineModel.RecordType.Program) {
643 startTime: WebInspector.TimelineModel.startTimeInSeconds(record),
644 endTime: WebInspector.TimelineModel.endTimeInSeconds(record)
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rdoc/generator/
H A Djson_index.rb167 record = klass.search_record
168 @index[:searchIndex] << search_string(record.shift)
169 @index[:longSearchIndex] << search_string(record.shift)
170 @index[:info] << record
188 record = method.search_record
189 @index[:searchIndex] << "#{search_string record.shift}()"
190 @index[:longSearchIndex] << "#{search_string record.shift}()"
191 @index[:info] << record
207 record = page.search_record
208 @index[:searchIndex] << search_string(record
[all...]
/macosx-10.9.5/cups-372.4/cups/scheduler/
H A Dcups-driverd.cxx98 typedef struct /**** PPD record ****/
118 typedef struct /**** In-memory record ****/
122 ppd_rec_t record; /* PPDs.dat record */ member in struct:__anon7225
125 typedef union /**** TAR record format ****/
293 ppd->record.mtime = mtime;
294 ppd->record.size = size;
295 ppd->record.model_number = model_number;
296 ppd->record.type = type;
298 strlcpy(ppd->record
2746 tar_rec_t record; /* Record from file */ local
[all...]
/macosx-10.9.5/pam_modules-138/common/
H A DCommon.c126 od_record_create(pam_handle_t *pamh, ODRecordRef *record, CFStringRef cfUser) argument
136 if (NULL == record || NULL == cfUser) {
145 #define CFRECORDNAME_RECORD CFSTR("record")
155 (*record = (ODRecordRef)CFDictionaryGetValue(cfdict, CFRECORDNAME_RECORD)) != NULL)
157 CFRetain(*record);
196 *record = ODNodeCopyRecord(cfNode, kODRecordTypeUsers, cfUser, attrs, &cferror);
197 if (*record)
207 if (*record) {
210 const void *values[] = { cfUser, *record };
226 if (*record)
274 od_record_create_cstring(pam_handle_t *pamh, ODRecordRef *record, const char *user) argument
308 od_record_attribute_create_cfarray(ODRecordRef record, CFStringRef attrib, CFArrayRef *out) argument
331 od_record_attribute_create_cfstring(ODRecordRef record, CFStringRef attrib, CFStringRef *out) argument
399 od_record_attribute_create_cstring(ODRecordRef record, CFStringRef attrib, char **out) argument
437 od_record_check_pwpolicy(ODRecordRef record) argument
471 od_record_check_authauthority(ODRecordRef record) argument
508 od_record_check_homedir(ODRecordRef record) argument
558 od_record_check_shell(ODRecordRef record) argument
597 od_string_from_record(ODRecordRef record, CFStringRef attrib, char **out) argument
688 ODRecordRef record = NULL; local
726 ODRecordRef record = NULL; local
[all...]
/macosx-10.9.5/libauto-185.5/
H A DInUseEnumerator.cpp51 // Don't record the zone object, otherwise objects allocated by the collector appear as leaks. <rdar://problem/6747283>
52 // record((void *)_zone_address, zone_size, MALLOC_ADMIN_REGION_RANGE_TYPE);
54 // record the garbage list.
56 record((void*)garbage_list.buffer(), garbage_list.size(), MALLOC_ADMIN_REGION_RANGE_TYPE);
66 // record the region object
67 record(region, Region::bytes_needed(), MALLOC_ADMIN_REGION_RANGE_TYPE);
68 // record the region range
69 record(regionReader->address(), regionReader->size(), MALLOC_PTR_REGION_RANGE_TYPE);
77 record(subzone, subzoneReader->base_data_size(), MALLOC_ADMIN_REGION_RANGE_TYPE);
88 record(subzoneReade
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/layout/
H A DPairPositioningSubtables.cpp133 const PairValueRecord *record = records; local
136 if (SWAPW(record->secondGlyph) == glyphID) {
137 return record;
140 record = (const PairValueRecord *) ((char *) record + recordSize);
147 const PairValueRecord *record = records;
148 const PairValueRecord *trial = (const PairValueRecord *) ((char *) record + extra);
151 record = trial;
156 trial = (const PairValueRecord *) ((char *) record + probe);
159 record
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/bench/
H A Dbench_wtext.tcl72 set record [list "" INTERP]
76 lappend record $n
87 $m add row $record
91 set record [list $n]
92 lappend record $desc
101 lappend record [format %.2f $val]
103 lappend record [format %s $val]
106 $m add row $record
/macosx-10.9.5/emacs-92/emacs/lisp/net/
H A Deudc-export.el41 (defun eudc-create-bbdb-record (record &optional silent)
42 "Create a BBDB record using the RECORD alist.
44 symbol and VALUE is the corresponding value for the record.
45 If SILENT is non-nil then the created BBDB record is not displayed."
47 ;; to field names in record are bound to the corresponding values
53 record)
61 bbdb-record
66 (setq bbdb-name (eudc-parse-spec (cdr (assq 'name conversion-alist)) record nil)
67 bbdb-company (eudc-parse-spec (cdr (assq 'company conversion-alist)) record ni
[all...]
/macosx-10.9.5/file_cmds-230/rmt/
H A Drmt.c68 char *record; variable
143 record = checkbuf(record, n);
145 cc = read(STDIN_FILENO, &record[i], n - i);
151 rval = write(tape, record, n);
160 record = checkbuf(record, n);
161 rval = read(tape, record, n);
166 (void)write(STDOUT_FILENO, record, rval);
230 checkbuf(record, siz
[all...]
/macosx-10.9.5/Libc-997.90.3/gen/FreeBSD/
H A Dgetcap.c67 static char *toprec; /* Additional record specified by cgetset() */
100 * Cgetcap searches the capability record buf for the capability cap with
154 * Cgetent extracts the capability record name from the NULL terminated file
158 * -1 if the requested record couldn't be found, -2 if a system error was
177 * pointer to a malloc'ed capability record with all tc= capabilities fully
195 char *record, *cbuf; local
207 * Check if we have a top record from cgetset().
210 if ((record = malloc (topreclen + BFRAG)) == NULL) {
214 (void)strcpy(record, toprec);
217 rp = record
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Doasys.c33 oasys_read_record (bfd *abfd, oasys_record_union_type *record) argument
35 bfd_size_type amt = sizeof (record->header);
37 if (bfd_bread ((void *) record, amt, abfd) != amt)
40 amt = record->header.length - sizeof (record->header);
43 if (bfd_bread ((void *) ((char *) record + sizeof (record->header)), amt, abfd)
50 oasys_string_length (oasys_record_union_type *record) argument
52 return record->header.length
53 - ((char *) record
69 oasys_record_union_type record; local
255 oasys_module_table_type record; local
341 oasys_record_union_type record; local
564 oasys_record_union_type record; local
757 oasys_write_record(bfd *abfd, oasys_record_enum_type type, oasys_record_union_type *record, size_t size) argument
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dgetcap.c67 static char *toprec; /* Additional record specified by cgetset() */
145 * Cgetcap searches the capability record buf for the capability cap with
199 * Cgetent extracts the capability record name from the NULL terminated file
203 * -1 if the requested record couldn't be found, -2 if a system error was
222 * pointer to a malloc'ed capability record with all tc= capabilities fully
239 char *record; local
250 * Check if we have a top record from cgetset().
254 if ((record = malloc (len)) == NULL) {
258 (void)strlcpy(record, toprec, len);
260 rp = record
[all...]
/macosx-10.9.5/file-46/file/src/
H A Dis_tar.c95 const union record *header = (const union record *)(const void *)buf;
100 if (nbytes < sizeof(union record))
107 for (i = sizeof(union record); --i >= 0;) {
H A Dtar.h43 * A "record" is a piece of info that we care about.
44 * Typically many "record"s fit into a "block".
51 union record { union
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Drec2stream.c5 /* convert record stream to stream-lf format
9 /* rec2stream reads a record stream from standard input and
35 #include <record.h>
H A Dstream2rec.c5 /* convert stream-lf data to record format
10 /* them to standard output in record form.
35 #include <record.h>
/macosx-10.9.5/shell_cmds-175/id/
H A Dopen_directory.h12 CFStringRef CopyAttrFromRecord(ODRecordRef record, CFStringRef attribute);
13 int GetIntAttrFromRecord(ODRecordRef record, CFStringRef attribute, int *output);
/macosx-10.9.5/CPANInternal-140/SQL-Abstract/t/
H A D03values.t66 for my $record (@data) {
68 my $values = [ map { $record->{$_} } sort keys %$record ];
70 my ($h_stmt, @h_bind) = $h_sql->insert('h_table', $record);
82 is_deeply ( [$h_sql->values ($record)] , \@h_bind, 'values() output matches bind values after insert()' );
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_x509_tp/lib/
H A DTPDatabase.cpp52 CSSM_DB_UNIQUE_RECORD_PTR record = NULL; local
79 &record);
81 return record;
108 CSSM_DB_UNIQUE_RECORD_PTR record; local
122 record = tpCertLookup(dlDb,
129 * -- free the unique record if we don't use it
132 if(record != NULL) {
135 tpDbDebug("tpDbFindIssuerCert: found cert record %p", record);
169 expiredIssuer->uniqueRecord(record);
308 CSSM_DB_UNIQUE_RECORD_PTR record = NULL; local
395 CSSM_DB_UNIQUE_RECORD_PTR record; local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_sd_cspdl/lib/
H A DSDDLSession.cpp199 RecordHandle record; local
200 record = mClientSession.insertRecord(ClientSession::toIPCHandle(inDbHandle),
204 outUniqueId = makeDbUniqueRecord(record);
211 RecordHandle record = ClientSession::toIPCHandle(findDbUniqueRecord(inUniqueRecordIdentifier)); local
212 mClientSession.deleteRecord(ClientSession::toIPCHandle(inDbHandle), record); local
224 RecordHandle record = ClientSession::toIPCHandle(findDbUniqueRecord(inoutUniqueRecordIdentifier)); local
225 mClientSession.modifyRecord(ClientSession::toIPCHandle(inDbHandle), record, inRecordType, local
228 //@@@ make a (new) unique record out of possibly modified "record"...
232 SDDLSession::postGetRecord(RecordHandle record, U32HandleObjec argument
303 RecordHandle record; local
339 RecordHandle record; local
379 RecordHandle record = ClientSession::toIPCHandle(findDbUniqueRecord(inUniqueRecord)); local
390 RecordHandle record = ClientSession::toIPCHandle(findDbUniqueRecord(inUniqueRecordIdentifier)); local
[all...]

Completed in 204 milliseconds

1234567891011>>