Home
last modified time | relevance | path

Searched refs:as (Results 1 – 17 of 17) sorted by relevance

/sys/kern/
Dloader.c61 LoaderLoadSegment(AS *as, VNode *vn, uintptr_t vaddr, in LoaderLoadSegment() argument
70 raddr = (void *)DMPA2VA(PMap_Translate(as, vaddr)); in LoaderLoadSegment()
78 raddr = (void *)DMPA2VA(PMap_Translate(as, vaddr)); in LoaderLoadSegment()
86 raddr = (void *)DMPA2VA(PMap_Translate(as, vaddr)); in LoaderLoadSegment()
98 LoaderZeroSegment(AS *as, uintptr_t vaddr, uintptr_t len) in LoaderZeroSegment() argument
106 raddr = (void *)DMPA2VA(PMap_Translate(as, vaddr)); in LoaderZeroSegment()
113 raddr = (void *)DMPA2VA(PMap_Translate(as, vaddr)); in LoaderZeroSegment()
120 raddr = (void *)DMPA2VA(PMap_Translate(as, vaddr)); in LoaderZeroSegment()
136 AS *as = thr->space; in Loader_Load() local
161 if (!PMap_AllocMap(as, va, memsz, PTE_W)) { in Loader_Load()
[all …]
/sys/amd64/
Dpmap.c83 AS *as = PAlloc_AllocPage(); in PMap_NewAS() local
85 if (!as) in PMap_NewAS()
88 as->root = PAlloc_AllocPage(); in PMap_NewAS()
89 as->tables = 1; in PMap_NewAS()
90 as->mappings = 0; in PMap_NewAS()
92 if (!as->root) { in PMap_NewAS()
93 PAlloc_Release(as); in PMap_NewAS()
99 as->root->entries[i] = 0; in PMap_NewAS()
102 as->root->entries[i] = systemAS.root->entries[i]; in PMap_NewAS()
105 return as; in PMap_NewAS()
[all …]
Dtrapentry.S181 # Pass the trap frame as an argument to trap_entry
/sys/amd64/include/
Dpmap.h70 bool PMap_Map(AS *as, uint64_t phys, uint64_t virt, uint64_t pages, uint64_t flags);
71 bool PMap_AllocMap(AS *as, uint64_t virt, uint64_t len, uint64_t flags);
72 bool PMap_Unmap(AS *as, uint64_t virt, uint64_t pages);
/lib/liblwip/src/
DFILES10 as well as the ARP module.
/lib/liblwip/src/netif/
DFILES10 adapt this for other link layers (such as Firewire).
14 file can be used as a "skeleton" for developing new Ethernet
/lib/liblwip/doc/
Dcontrib.txt10 First of all as you may already know lwIP is a volunteer project so feedback
25 10. use current source code style as further reference.
32 3. Use current documentation style as further reference.
51as to allow for loss of fixes. Putting bugs on Savannah and subsequently closing them is too much …
Drawapi.txt30 (also known as the "tcpip_thread"). The raw API may only be used from
75 programs. In fact, the sequential API is implemented as an application
82 function is passed the current TCP or UDP connection state as an
114 can be specified as IP_ADDR_ANY in order to bind the connection to
128 the one passed as an argument to the function will be
136 passed as an argument to tcp_listen() will not be deallocated.
140 Same as tcp_listen, but limits the number of outstanding connections
148 housekeeping tasks, such as allowing further incoming connections to be
170 function specified as the fourth argument (the "connected" argument)
193 the data is passed as the len parameter. The apiflags can be one or more of:
[all …]
DFILES2 contrib.txt - How to contribute to lwIP as a developer.
Dsys_arch.txt16 implement timer scheduling as well but as of lwIP 0.5 this is
26 either as a queue which allows multiple messages to be posted to a
27 mailbox, or as a rendez-vous point where only one message can be
133 The return values are the same as for the sys_arch_sem_wait() function:
146 To allow for efficient implementations, this can be defined as a
169 to be implemented as well:
174 execution in the function "thread()". The "arg" argument will be passed as an
Dsavannah.txt20 Or, obtain a stable branch (updated with bug fixes only) as follows:
24 Or, obtain a specific (fixed) release as follows:
52 then you could login; Savannah refuses to give you a shell - which is OK, as we
118 Now, sign the archives with a detached GPG binary signature as follows:
Dsnmp_agent.txt36 acting as a single gateway interface (G) for the default route.
/lib/liblwip/
DUPGRADING52 still want to use your own timer implementation for NO_SYS==0 (as before).
62 binary semaphores instead of mutexes - as before)
103 * Added printf-formatter X8_F to printf u8_t as hex
106 LWIP_RAM_HEAP_POINTER as a void pointer to that memory's address
133 * Fixed ARP input processing: only add a new entry if a request was directed as us
DCHANGELOG64 Added pbuf flags to mark incoming packets as link-layer broadcast/multicast.
283 lwip_send() sends as much as possible for non-blocking sockets
400 This should speed up receiving data on sockets as the select code in
456 to let sys.h use binary semaphores instead of mutexes - as before)
517 LWIP_RAM_HEAP_POINTER as a void pointer to that memory's address
698 IP_FRAG_USES_STATIC_BUF=0 as default to be on the safe side.
808 request was directed as us (RFC 826, Packet Reception), otherwise
1075 valid DHCP packets -> allow 0.0.0.0 as source address when LWIP_DHCP is
1154 as an external function for lookup.
1247 as in the RFCs.
[all …]
DREADME48 contributions (such as platform ports) are in the 'contrib' module.
/docs/
DDoxyfile136 # as the leading text of the brief description, will be stripped from the text
137 # and the result, after processing the whole list, is used as the annotated
138 # text. Otherwise, the brief description is used as-is. If left blank, the
163 # inherited members of a class in the documentation of that class as if those
180 # If left blank the directory from which doxygen is run is used as the path to
206 # first line (until the first dot) of a Javadoc-style comment as the brief
215 # such as
217 # as being the beginning of a Javadoc-style comment "banner". If set to NO, the
225 # line (until the first dot) of a Qt-style comment as the brief description. If
233 # multi-line C++ special comment block (i.e. a block of //! or /// comments) as
[all …]
/
DSConstruct91 with open(".git/" + head[5:]) as bf: