Searched refs:end (Results 76 - 100 of 112) sorted by relevance

12345

/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs4_vnops.c3329 uint64_t end,
3370 nfsm_chain_add_64(error, &nmreq, NFS_LOCK_LENGTH(start, end));
3407 uint64_t end,
3442 nfsm_chain_add_64(error, &nmreq, NFS_LOCK_LENGTH(start, end));
3494 uint64_t end,
3514 if ((start <= nflp->nfl_end) && (end >= nflp->nfl_start) &&
3541 error = nmp->nm_funcs->nf_getlock_rpc(np, nlop, fl, start, end, ctx);
3554 * Once end of queue is reached, send request to the server.
3566 uint64_t end,
3590 newnflp->nfl_end = end;
3324 nfs4_unlock_rpc( nfsnode_t np, struct nfs_lock_owner *nlop, int type, uint64_t start, uint64_t end, int flags, thread_t thd, kauth_cred_t cred) argument
3402 nfs4_getlock_rpc( nfsnode_t np, struct nfs_lock_owner *nlop, struct flock *fl, uint64_t start, uint64_t end, vfs_context_t ctx) argument
3489 nfs_advlock_getlock( nfsnode_t np, struct nfs_lock_owner *nlop, struct flock *fl, uint64_t start, uint64_t end, vfs_context_t ctx) argument
3560 nfs_advlock_setlock( nfsnode_t np, struct nfs_open_file *nofp, struct nfs_lock_owner *nlop, int op, uint64_t start, uint64_t end, int style, short type, vfs_context_t ctx) argument
3976 nfs_advlock_unlock( nfsnode_t np, struct nfs_open_file *nofp, struct nfs_lock_owner *nlop, uint64_t start, uint64_t end, int style, vfs_context_t ctx) argument
4239 uint64_t start, end; local
[all...]
/darwin-on-arm/xnu/bsd/dev/dtrace/
H A Ddtrace.c244 static dtrace_dynvar_t dtrace_dynhash_sink; /* end of dynamic hash chains */
1715 * end of the hash chain; we can kick out of
1731 * the end of the dirty list. However, we
4255 * We reached the end of the string without finding
4388 char *start = (char *)dest, *end = start + size - 1;
4411 *end = '\0';
4477 * copy the minor's name into the end of the
4487 if ((end -= (len + 1)) < start)
4490 *end = ':';
4494 end[
[all...]
/darwin-on-arm/xnu/bsd/netinet/
H A Dip_fw2.c446 char *end; local
453 end = ((char*)user_ip_fw->cmd) + cmdsize;
458 while ( useraction < end ){
480 char *end; local
487 end = ((char *)user_ip_fw->cmd) + cmdsize;
492 while ( useraction < end ){
567 char *end; local
574 end = ((char*)fw32->cmd) + cmdsize;
579 while ( fw32action < end ){
604 char *end; local
[all...]
H A Dtcp_var.h153 tcp_seq end; /* end seq no. */ member in struct:sackblk
158 tcp_seq end; /* end seq no. */ member in struct:sackhole
H A Dtcp_output.c494 if (SEQ_GT(p->end, tp->snd_recover)) {
514 len = ((int32_t)min(cwin, p->end - p->rxmit));
1210 *lp++ = htonl(sack.end);
2103 * we could end up skipping it (thus generating bogus
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_utfconv.c784 * presumably be used to normalize filenames in the back-end
1026 u_int16_t *end; local
1029 end = characters + count;
1035 while (ch2 < end) {
H A Dvfs_subr.c573 /* add the remaining entries in workerq to the end of mount vnode list */
875 * exclusive lock at the end of dounmount.
1644 * add the new guy to the appropriate end of the RAGE list
2655 char *ptr, *end; local
2663 end = path + 1;
2664 while(end < path + pathlen && *end != '\0') {
2665 while(end < path + pathlen && *end == '/' && *end !
[all...]
/darwin-on-arm/xnu/osfmk/vm/
H A Dvm_object.c1647 * they may end up releasing the last reference on the VM
2327 * set to 64 pages. The bit map is indexed from the low-order end, so that the lowest
2920 vm_object_offset_t end; local
2922 end = offset + size;
2927 (offset <= p->offset) && (p->offset < end)) {
2937 (offset <= p->offset) && (p->offset < end)) {
2945 vm_object_offset_t end; local
2948 end = offset + size;
2952 target_off < end;
2965 target_off < end; target_of
5253 vm_object_page_remove( register vm_object_t object, register vm_object_offset_t start, register vm_object_offset_t end) argument
[all...]
H A Dmemory_object.c924 * worst case (a single resident page at the end of an extremely large
935 vm_object_offset_t end; local
940 end = offset + size;
949 if ((m->offset >= start) && (m->offset < end)) {
H A Dvm_shared_region.c773 slide_info.end = 0;
1494 slide_info.end = slide_info.start + size;
1571 slide_info.end = 0;
1798 /* the comm page is likely to be beyond the actual end of the VM map */
/darwin-on-arm/xnu/bsd/net/
H A Dpf.c1542 u_int32_t end; local
1559 end = state->rule.ptr->timeout[PFTM_ADAPTIVE_END];
1563 end = pf_default_rule.timeout[PFTM_ADAPTIVE_END];
1566 if (end && states > start && start < end) {
1567 if (states < end)
1568 return (state->expire + t * (end - states) /
1569 (end - start));
1706 /* wrap to start of list when we hit the end */
2322 pf_change_a(&sack.end,
5798 u_int32_t ack, end, seq, orig_seq; local
[all...]
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_cnode.c687 * just skip to the end. We don't need to do anything here.
756 * If the vnode hits the end of inactive before getting reclaimed, the
757 * content protection keys would be wiped/bzeroed out, and we'd end up
788 off_t end = invalid_range->rl_end; local
794 rl_remove(start, end, &fp->ff_invalidranges);
798 leof, end + 1, start, (off_t)0, cluster_zero_flags);
/darwin-on-arm/xnu/libkern/kxld/
H A Dkxld_reloc.c931 kxld_addr_t end = 0; local
941 end = start + sect->size;
943 if (start <= addr && addr < end) break;
1495 * relocations currently end up being either vanilla (handled above) or
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOMemoryDescriptor.cpp219 }; // end extern "C"
1928 ppnum_t page, end;
1931 end = atop_64(trunc_page_64(pa + count));
1932 for (; page < end; page++)
1940 ppnum_t page, end;
1943 end = atop_64(trunc_page_64(pa + count));
1944 for (; page < end; page++)
3608 mach_vm_address_t end = round_page_64(fAddress + offset + length);
3612 kr = vm_map_wire(fAddressMap, start, end, (kIODirectionOutIn & options), FALSE);
3616 kr = vm_map_unwire(fAddressMap, start, end, FALS
[all...]
H A DIOServicePM.cpp3748 AbsoluteTime end; local
3764 clock_get_uptime(&end);
3780 SUB_ABSOLUTETIME(&end, &fDriverCallStartTime);
3781 absolutetime_to_nanoseconds(end, &nsec);
3820 AbsoluteTime end; local
3846 clock_get_uptime(&end);
3854 clock_get_uptime(&end);
3865 SUB_ABSOLUTETIME(&end, &informee->startTime);
3866 absolutetime_to_nanoseconds(end, &nsec);
4254 // Redundant power changes skips to the end o
[all...]
/darwin-on-arm/xnu/osfmk/device/
H A Diokit_rpc.c590 lastPage = pmap_memory_regions[idx].end - 1;
/darwin-on-arm/xnu/osfmk/kern/
H A Dipc_kobject.c222 range = mig_e[i]->end - mig_e[i]->start;
/darwin-on-arm/xnu/osfmk/x86_64/
H A Dpmap.c240 extern char end;
576 for (pn = pmptr->base; pn <= pmptr->end; pn++) {
747 pmap_memory_regions[i].end < vm_kernel_base_page;
750 vm_offset_t pend = i386_ptob(pmap_memory_regions[i].end+1);
/darwin-on-arm/xnu/libkern/c++/
H A DOSKext.cpp643 IOLog("kaslr: kernel start 0x%lx end 0x%lx length %lu \n",
2752 /* IOCFSerialize added a nul byte to the end of the string. Very nice of it.
2774 * (This function releases it at the end.)
5331 vm_map_offset_t end,
5343 vm_map_offset_t end,
5354 vm_map_offset_t end,
5358 if (start == end) { // 10538581
5361 return vm_map_protect(map, start, end, new_prot, set_max);
5368 vm_map_offset_t end,
5372 return vm_map_wire(map, start, end, access_typ
5328 OSKext_protect( vm_map_t map, vm_map_offset_t start, vm_map_offset_t end, vm_prot_t new_prot, boolean_t set_max) argument
5340 OSKext_wire( vm_map_t map, vm_map_offset_t start, vm_map_offset_t end, vm_prot_t access_type, boolean_t user_wire) argument
5351 OSKext_protect( vm_map_t map, vm_map_offset_t start, vm_map_offset_t end, vm_prot_t new_prot, boolean_t set_max) argument
5365 OSKext_wire( vm_map_t map, vm_map_offset_t start, vm_map_offset_t end, vm_prot_t access_type, boolean_t user_wire) argument
5382 vm_map_offset_t end = 0; local
10294 vm_map_offset_t start, end; local
[all...]
H A DOSUnserializeXML.cpp564 "$end", "error", "$undefined", "ARRAY", "BOOLEAN", "DATA", "DICTIONARY",
1421 YYDPRINTF ((stderr, "Now at end of input.\n"));
1497 { yyerror("unexpected end of buffer");
1728 /* Return failure if at end of input. */
1954 // </ end tag >
1961 /* find end of tag while copying it */
2028 /* find end of string */
2284 // end of the buffer?
H A DOSUnserialize.cpp533 "$end", "error", "$undefined", "NUMBER", "STRING", "DATA", "BOOLEAN",
1387 YYDPRINTF ((stderr, "Now at end of input.\n"));
1688 /* Return failure if at end of input. */
1900 /* find end of string */
1925 /* find end of string, line, buffer */
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_control.c368 goto end;
372 end:
H A Dubc_subr.c119 const void *end,
124 end < start) {
129 end > upper_bound) {
1138 * end of the file, but this could also be
1180 * end of the file, but this could also be
1253 * end_off The end of the range, as an offset
1281 * end_off The end of the range, as an offset
1299 * intend to increment from the end of the
1329 * end_off The end of the range, as an offset
1557 * calls memory_object_destory(), which will in turn end u
117 cs_valid_range( const void *start, const void *end, const void *lower_bound, const void *upper_bound) argument
[all...]
/darwin-on-arm/xnu/bsd/netinet6/
H A Dnd6_rtr.c1850 /* insert at the end of the group */
2337 goto end;
2339 goto end;
2351 goto end; /* we should just give up in this case. */
2389 goto end;
2566 goto end;
2575 goto end;
2632 end:
/darwin-on-arm/xnu/osfmk/pmc/
H A Dpmc.c1725 uint64_t end = mach_absolute_time(); local
1726 if((end - start) > 5000ULL) {
1728 reservation->config->method, (end - start));

Completed in 232 milliseconds

12345