Searched refs:ip (Results 1 - 25 of 99) sorted by last modified time

1234

/haiku/src/add-ons/kernel/network/protocols/tcp/
H A DTCPEndpoint.cpp15 #include <netinet/ip.h>
H A Dtcp.cpp23 #include <netinet/ip.h>
/haiku/src/system/kernel/arch/x86/
H A Darch_int.cpp91 panic("unhandled trap 0x%lx (%s) at ip 0x%lx, thread %" B_PRId32 "!\n",
93 frame->ip, thread ? thread->id : -1);
120 signalAddress = frame->ip;
127 signalAddress = frame->ip;
140 signalAddress = frame->ip;
147 signalAddress = frame->ip;
154 signalAddress = frame->ip;
163 signalAddress = frame->ip;
180 signalAddress = frame->ip;
276 debug_set_page_fault_info(cr2, frame->ip,
[all...]
H A Darch_debug.cpp373 print_stack_frame(Thread* thread, addr_t ip, addr_t bp, addr_t nextBp, argument
389 status = lookup_symbol(thread, ip, &baseAddress, &symbol, &image,
393 B_PRINTF_POINTER_WIDTH, bp, diff, B_PRINTF_POINTER_WIDTH, ip);
409 kprintf(" + %#04lx\n", ip - baseAddress);
414 area = thread->team->address_space->LookupArea(ip);
418 (void*)area->Base(), ip - area->Base());
444 kprintf(" rip %#-18lx rsp %#-18lx rflags %#lx\n", frame->ip,
454 kprintf(" eip %#-10lx eflags %#-10lx", frame->ip, frame->flags);
629 CHECK_DEBUG_VARIABLE("rip", frame->ip, true);
648 CHECK_DEBUG_VARIABLE("eip", frame->ip, tru
727 addr_t ip, nextBp; local
967 is_calling(Thread* thread, addr_t ip, const char* pattern, addr_t start, addr_t end) argument
1099 addr_t ip, nextBp; local
1151 addr_t ip; local
[all...]
/haiku/src/apps/haikudepot/server/
H A DWebAppInterface.cpp54 virtual void HostnameResolved(BUrlRequest* caller, const char* ip) argument
/haiku/src/bin/network/traceroute/
H A Dtraceroute.c23 * traceroute host - trace the route ip packets follow going to "host".
25 * Attempt to trace the route an ip packet would follow to some
31 * defaults to net.inet.ip.ttl hops & can be changed with the -m flag).
146 * system available from Berkeley: A raw ip socket using proto
147 * IPPROTO_RAW must interpret the data sent as an ip datagram (as
148 * opposed to data to be wrapped in an ip datagram). See the README
159 * udp header (the ip id could be used but there's no way to
160 * interlock with the kernel's assignment of ip id's and, anyway,
162 * code to set the ip id). So, to allow two or more users to
210 #include <netinet/ip
1042 register struct ip *ip; local
1397 register struct ip *ip; local
1693 register struct ip *ip; local
1719 p_cksum(struct ip *ip, u_short *data, int len, int cov) argument
[all...]
/haiku/src/bin/network/ping/
H A Dping.c66 #include <netinet/ip.h>
107 #define MAXIPLEN (sizeof(struct ip) + MAX_IPOPTLEN)
204 static void pr_icmph(struct icmp *, struct ip *, const u_char *const);
205 static void pr_iph(struct ip *, const u_char *);
283 outpack = outpackhdr + sizeof(struct ip);
562 icmp_len = sizeof(struct ip) + ICMP_MINLEN + phdr_len;
705 struct ip ip; local
708 memcpy(&ip, outpackhdr, sizeof(ip));
1089 struct ip ip; local
1134 struct ip ip; local
1587 pr_iph(struct ip *ip, const u_char *cp) argument
[all...]
/haiku/src/add-ons/kernel/network/protocols/ipv4/
H A Dipv4.cpp29 #include <netinet/ip.h>
/haiku/headers/posix/netinet/
H A Dip_icmp.h35 #include <netinet/ip.h>
64 struct ip idi_ip;
89 #define ICMP_ADVLENMIN (8 + sizeof(struct ip) + 8)
104 #define ICMP_PARAMPROB 12 /* ip header bad */
/haiku/src/libs/compat/freebsd_iflib/
H A Diflib.c80 #include <netinet/ip.h>
3287 struct ip *ip = NULL; local
3291 minthlen = min(m->m_pkthdr.len, pi->ipi_ehdrlen + sizeof(*ip) + sizeof(*th));
3300 if (n->m_len >= sizeof(*ip)) {
3301 ip = (struct ip *)n->m_data;
3302 if (n->m_len >= (ip->ip_hl << 2) + sizeof(*th))
3303 th = (struct tcphdr *)((caddr_t)ip + (ip
[all...]
/haiku/src/tests/system/network/tcp_shell/
H A Dtcp_shell.cpp32 #include <netinet/ip.h>
1152 pcap_header.included_len = sizeof(struct ip) + buffer->size;
1155 struct ip ip_header;
1157 ip_header.ip_hl = sizeof(struct ip) >> 2;
1159 ip_header.ip_len = htons(sizeof(struct ip) + buffer->size);
/haiku/src/system/kernel/arch/x86/64/
H A Dthread.cpp92 frame->ip -= 2;
302 frame.ip = entry;
368 signalFrameData->context.uc_mcontext.rip = frame->ip;
387 sizeof(*signalFrameData) + sizeof(frame->ip));
390 = (signal_frame_data*)(userStack + sizeof(frame->ip));
398 if (user_memcpy(userStack, &frame->ip, sizeof(frame->ip)) != B_OK)
410 frame->ip = commPageAddress[COMMPAGE_ENTRY_X86_SIGNAL_HANDLER]
442 frame->ip = signalFrameData->context.uc_mcontext.rip;
/haiku/src/system/kernel/arch/ppc/
H A Darch_debug.cpp65 get_next_frame(addr_t framePointer, addr_t *next, addr_t *ip) argument
73 *ip = frame.return_address;
81 print_stack_frame(Thread *thread, addr_t ip, addr_t framePointer, argument
94 status_t status = elf_debug_lookup_symbol_address(ip, &baseAddress, &symbol,
96 if (status != B_OK && !IS_KERNEL_ADDRESS(ip) && thread) {
98 status = image_debug_lookup_user_symbol_address(thread->team, ip,
104 diff, ip, image, symbol, ip - baseAddress,
108 framePointer, diff, ip, image, (void *)baseAddress,
109 ip
223 addr_t ip, nextFramePointer; local
[all...]
/haiku/src/system/kernel/arch/m68k/
H A Darch_debug.cpp66 get_next_frame(addr_t framePointer, addr_t *next, addr_t *ip) argument
74 *ip = frame.return_address;
82 print_stack_frame(Thread *thread, addr_t ip, addr_t framePointer, argument
95 status_t status = elf_debug_lookup_symbol_address(ip, &baseAddress, &symbol,
97 if (status != B_OK && !IS_KERNEL_ADDRESS(ip) && thread) {
99 status = image_debug_lookup_user_symbol_address(thread->team, ip,
105 diff, ip, image, symbol, ip - baseAddress,
109 framePointer, diff, ip, image, (void *)baseAddress,
110 ip
216 addr_t ip, nextFramePointer; local
312 addr_t ip; local
[all...]
/haiku/src/system/kernel/arch/arm64/
H A Darch_debug.cpp49 get_next_frame(addr_t fp, addr_t *next, addr_t *ip) argument
52 *ip = ((addr_t*)fp)[1];
276 print_stack_frame(Thread *thread, addr_t ip, addr_t fp, addr_t next, argument
292 status = lookup_symbol(thread, ip, &baseAddress, &symbol, &image,
296 B_PRINTF_POINTER_WIDTH, fp, diff, B_PRINTF_POINTER_WIDTH, ip);
312 kprintf(" + %#04lx\n", ip - baseAddress);
317 area = thread->team->address_space->LookupArea(ip);
321 (void*)area->Base(), ip - area->Base());
402 addr_t ip, next; local
404 if (get_next_frame(fp, &next, &ip) !
[all...]
/haiku/src/system/kernel/arch/arm/
H A Darch_debug.cpp57 get_next_frame(addr_t fp, addr_t *next, addr_t *ip) argument
60 *ip = *(((addr_t*)fp) - 0);
285 print_stack_frame(Thread *thread, addr_t ip, addr_t fp, addr_t next, argument
301 status = lookup_symbol(thread, ip, &baseAddress, &symbol, &image,
305 B_PRINTF_POINTER_WIDTH, fp, diff, B_PRINTF_POINTER_WIDTH, ip);
321 kprintf(" + %#04lx\n", ip - baseAddress);
326 area = thread->team->address_space->LookupArea(ip);
330 (void*)area->Base(), ip - area->Base());
420 addr_t ip, next; local
422 if (get_next_frame(fp, &next, &ip) !
[all...]
H A Darch_asm.S250 mrs ip, cpsr
251 bic ip, ip, #(CPSR_MODE_MASK | CPSR_T | CPSR_F | CPSR_I)
252 orr ip, ip, #(CPSR_MODE_USR | CPSR_F)
253 msr spsr, ip
258 mrs ip, cpsr
259 bic ip, ip, #(CPSR_MODE_MASK)
260 orr ip, i
[all...]
/haiku/src/add-ons/kernel/file_systems/ufs2/
H A Dufs2.h69 * information in the inode, using the ``blksize(fs, ip, lbn)'' macro.
648 #define blksize(fs, ip, lbn) \
649 (((lbn) >= UFS_NDADDR || (ip)->i_size >= \
652 : (fragroundup(fs, blkoff(fs, (ip)->i_size))))
/haiku/src/add-ons/kernel/file_systems/netfs/shared/
H A DNetAddress.cpp146 uint32 ip = GetIP(); local
149 ":%hu", ip >> 24, (ip >> 16) & 0xff, (ip >> 8) & 0xff, ip & 0xff,
153 ip >> 24, (ip >> 16) & 0xff, (ip >> 8) & 0xff, ip & 0xff);
/haiku/src/add-ons/kernel/drivers/network/ether/intel22x/dev/igc/
H A Dif_igc.h76 #include <netinet/ip.h>
/haiku/src/servers/debug/
H A DDebugServer.cpp952 void *ip = NULL; local
954 status_t error = debug_get_instruction_pointer(&fDebugContext, thread, &ip,
968 _LookupSymbolAddress(lookupContext, ip, symbolBuffer,
971 debug_printf("stack trace, current PC %p %s:\n", ip, symbolBuffer);
/haiku/src/kits/network/libnetservices/
H A DUrlSynchronousRequest.cpp63 BUrlSynchronousRequest::HostnameResolved(BUrlRequest*, const char* ip) argument
65 PRINT(("SynchronousRequest::HostnameResolved(%s)\n", ip));
H A DUrlProtocolDispatchingListener.cpp56 const char* ip)
59 message.AddString("url:hostIp", ip);
55 HostnameResolved(BUrlRequest* caller, const char* ip) argument
H A DUrlProtocolAsynchronousListener.cpp91 const char* ip; local
92 message->FindString("url:ip", &ip);
94 HostnameResolved(caller, ip);
/haiku/headers/private/netservices/
H A DUrlSynchronousRequest.h30 const char* ip);

Completed in 340 milliseconds

1234