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

/darwin-on-arm/xnu/osfmk/chud/
H A Dchud_thread.c191 unsigned int actual; /* this many things */ local
232 actual = 0;
243 task_list[actual++] = task;
257 thread_list[actual++] = thread;
266 if (actual < maxthings)
267 size_needed = actual * sizeof (mach_port_t);
269 if (actual == 0) {
291 for (i = 0; i < actual; i++)
300 for (i = 0; i < actual; i++)
316 *count = actual;
329 mach_msg_type_number_t actual; local
[all...]
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_attrlist.c69 attribute_set_t actual; member in struct:_attrlist_buf
888 bzero(&ab.actual, sizeof (ab.actual));
896 ab.actual.commonattr |= ATTR_CMN_NAME;
900 ab.actual.commonattr |= ATTR_CMN_DEVID;
904 ab.actual.commonattr |= ATTR_CMN_FSID;
912 ab.actual.commonattr |= ATTR_CMN_OBJTAG;
935 ab.actual.commonattr |= ATTR_CMN_SCRIPT;
939 ab.actual.commonattr |= ATTR_CMN_CRTIME;
943 ab.actual
[all...]
H A Dvfs_subr.c3199 int actual=0; local
3201 actual = 0;
3204 if (actual <= count) {
3205 fsidlst[actual] = mp->mnt_vfsstat.f_fsid;
3206 actual++;
3210 return (actual);
3215 * fill in the array of fsid_t's up to a max of 'count', the actual
3216 * number filled in will be set in '*actual'. If there are more fsid_t's
3217 * than room in fsidlst then ENOMEM will be returned and '*actual' will
3218 * have the actual coun
3222 sysctl_vfs_getvfslist(fsid_t *fsidlst, int count, int *actual) argument
3241 int actual, error; local
[all...]
/darwin-on-arm/xnu/osfmk/vm/
H A Dvm_debug.c528 unsigned int actual, space;
547 actual = pmap_list_resident_pages(pmap,
550 if (actual <= space)
561 size = round_page(actual * sizeof(vm_offset_t));
563 if (actual == 0) {
569 *pages_count = actual;
570 size_used = round_page(actual * sizeof(vm_offset_t));
616 unsigned int potential, actual;
628 actual = vm_page_info(info, potential);
629 if (actual <
[all...]
/darwin-on-arm/xnu/osfmk/kern/
H A Dprocessor.c772 unsigned int actual; /* this many things */ local
815 actual = 0;
828 task_list[actual++] = task;
844 thread_list[actual++] = thread;
854 if (actual < maxthings)
855 size_needed = actual * sizeof (mach_port_t);
857 if (actual == 0) {
878 for (i = 0; i < actual; i++)
886 for (i = 0; i < actual; i++)
903 *count = actual;
[all...]
H A Dmisc_protos.h91 vm_size_t *actual);
H A Dstack.c226 * guard page. Skip past it to get the actual stack base address.
516 unsigned int actual; /* this many things */
531 actual = threads_count;
535 size_needed = actual * sizeof(thread_t);
560 assert(i <= actual);
H A Dtask.c1114 mach_msg_type_number_t actual; local
1137 actual = task->thread_count;
1140 size_needed = actual * sizeof (mach_port_t);
1163 for (thread = (thread_t)queue_first(&task->threads); i < actual;
1171 actual = j;
1172 size_needed = actual * sizeof (mach_port_t);
1177 if (actual == 0) {
1194 for (i = 0; i < actual; ++i)
1206 *count = actual;
1210 for (i = 0; i < actual;
[all...]
/darwin-on-arm/xnu/osfmk/ipc/
H A Dmach_port.c148 ipc_entry_num_t actual; local
193 actual = *actualp;
194 names[actual] = name;
195 types[actual] = type;
196 *actualp = actual+1;
227 ipc_entry_num_t actual; /* this many names */ local
311 actual = 0;
327 types, &actual);
333 if (actual == 0) {
345 size_used = actual * sizeo
1102 ipc_entry_num_t actual = *actualp; local
1134 ipc_entry_num_t actual; /* this many members */ local
[all...]
/darwin-on-arm/xnu/osfmk/default_pager/
H A Ddp_memory_object.c679 Their actual success is determined by the fact that they provide a page or not,
954 unsigned int actual; local
965 actual = vstruct_list.vsl_count;
970 psize = round_page(actual * sizeof (*pagers));
982 osize = round_page(actual * sizeof (*objects));
1095 unsigned int actual; local
1140 actual = ps_vstruct_allocated_pages(entry, pages, potential);
1144 if (actual <= potential)
1151 size = round_page(actual * sizeof (*pages));
1163 while (actual < potentia
[all...]
/darwin-on-arm/xnu/tools/tests/libMicro/
H A DREADME45 directly. Note that the actual binaries are created in
/darwin-on-arm/xnu/bsd/dev/dtrace/
H A Dsystrace.c347 systrace_init(struct sysent *actual, systrace_sysent_t **interposed) argument
358 struct sysent *a = &actual[i];
378 systrace_init(struct sysent *actual, systrace_sysent_t **interposed) argument
391 struct sysent *a = &actual[i];
865 machtrace_init(mach_trap_t *actual, machtrace_sysent_t **interposed) argument
876 mach_trap_t *a = &actual[i];
H A Ddtrace_glue.c1223 size_t actual; local
1227 int error = copyinstr((const user_addr_t)src, (char *)dst, (vm_size_t)len, &actual);
1262 size_t actual; local
1272 if (copyoutstr((const void *)src, dst, (size_t)len, &actual)) {
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_credential.c85 * change a credential, and we can track actual credential changes that
784 size_t actual; /* not used */ local
790 error = copyoutstr(CAST_DOWN(void *,workp->kr_extend), uaddr, MAXPATHLEN, &actual);
825 * actual request outstanding.
974 * actual request response may be destroyed
991 size_t actual; /* notused */ local
994 error = copyinstr(extl.el_extend, CAST_DOWN(void *, workp->kr_extend), MAXPATHLEN, &actual);
3892 * about the actual count. If they specify an input count, however,

Completed in 82 milliseconds