Home
last modified time | relevance | path

Searched refs:IP (Results 1 – 25 of 987) sorted by relevance

12345678910>>...40

/openbsd-src/gnu/usr.bin/perl/cpan/IO-Socket-IP/t/
H A D10args.t8 use IO::Socket::IP;
22 local *IO::Socket::IP::_io_socket_ip__configure = sub {
27 IO::Socket::IP->new(@$arg);
58 is_deeply( [ IO::Socket::IP->split_addr( "hostname:http" ) ],
62 is_deeply( [ IO::Socket::IP->split_addr( "192.0.2.1:80" ) ],
66 is_deeply( [ IO::Socket::IP->split_addr( "[2001:db8::1]:80" ) ],
70 is_deeply( [ IO::Socket::IP->split_addr( "something.else" ) ],
74 is( IO::Socket::IP->join_addr( "hostname", "http" ),
78 is( IO::Socket::IP->join_addr( "192.0.2.1", 80 ),
82 is( IO::Socket::IP
[all...]
H A D16v6only.t9 use IO::Socket::IP;
11 eval { IO::Socket::IP->new( LocalHost => "::1" ) } or
26 my $listensock = IO::Socket::IP->new(
37 my $testsock = IO::Socket::IP->new(
51 skip "This platform does not allow turning IPV6_V6ONLY off", 3 unless IO::Socket::IP->CAN_DISABLE_V6ONLY;
55 my $listensock = IO::Socket::IP->new(
66 my $testsock = IO::Socket::IP->new(
76 diag( "IO::Socket::IP->new failed - $err" );
H A D19no-addrs.t8 use IO::Socket::IP;
15 my $sock = IO::Socket::IP->new( Family => AF_INET );
29 eval { IO::Socket::IP->new( LocalHost => "::1" ) } or
32 my $sock = IO::Socket::IP->new( Family => $AF_INET6 );
45 my $sock = IO::Socket::IP->new( Type => SOCK_STREAM );
H A D11sockopts.t8 use IO::Socket::IP;
19 my $sock = IO::Socket::IP->new(
28 $sock = IO::Socket::IP->new(
48 my $sock = IO::Socket::IP->new(
61 my $sock = IO::Socket::IP->new(
/openbsd-src/regress/usr.bin/mandoc/man/blank/
H A DafterSH.out_ascii6 DDEESSCCRRIIPPTTIIOONN
9 DDEESSCCRRIIPPTTIIOONN 22
12 DDEESSCCRRIIPPTTIIOONN 33
15 DDEESSCCRRIIPPTTIIOONN 44
18 DDEESSCCRRIIPPTTIIOONN 55
21 DDEESSCCRRIIPPTTIIOONN 66
24 DDEESSCCRRIIPPTTIIOONN 77
27 DDEESSCCRRIIPPTTIIOONN 88
30 DDEESSCCRRIIPPTTIIOONN 1100
33 DDEESSCCRRIIPPTTIIOONN 1122
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DInstrumentation.cpp25 static BasicBlock::iterator moveBeforeInsertPoint(BasicBlock::iterator I, BasicBlock::iterator IP) { in moveBeforeInsertPoint() argument
27 if (I == IP) { in moveBeforeInsertPoint()
28 ++IP; in moveBeforeInsertPoint()
31 I->moveBefore(&*IP); in moveBeforeInsertPoint()
33 return IP; in moveBeforeInsertPoint()
42 BasicBlock::iterator IP) { in PrepareToSplitEntryBlock() argument
44 for (auto I = IP, E = BB.end(); I != E; ++I) { in PrepareToSplitEntryBlock()
54 IP = moveBeforeInsertPoint(I, IP); in PrepareToSplitEntryBlock()
56 return IP; in PrepareToSplitEntryBlock()
/openbsd-src/regress/usr.bin/mandoc/man/IP/
H A Dempty.out_ascii1 IP-EMPTY(1) General Commands Manual IP-EMPTY(1)
4 IP-empty - empty indented paragraphs
6 DDEESSCCRRIIPPTTIIOONN
11 Empty IP is deleted:
17 Empty IP is deleted, RS does not cause additional spacing:
22 OpenBSD July 17, 2012 IP-EMPTY(1)
H A Dvert.out_ascii1 IP-VERT(1) General Commands Manual IP-VERT(1)
4 IP-vert - vertical spacing before indented paragraphs
6 DDEESSCCRRIIPPTTIIOONN
12 OpenBSD February 19, 2020 IP-VERT(1)
H A Dbullet.out_utf81 IP-BULLET(1) General Commands Manual IP-BULLET(1)
4 IP-bullet - bullet lists
6 DDEESSCCRRIIPPTTIIOONN
24 OpenBSD February 20, 2020 IP-BULLET(1)
H A Dbullet.out_ascii1 IP-BULLET(1) General Commands Manual IP-BULLET(1)
4 IP-bullet - bullet lists
6 DDEESSCCRRIIPPTTIIOONN
24 OpenBSD February 20, 2020 IP-BULLET(1)
H A Dtag.out_ascii1 IP-TAG(1) General Commands Manual IP-TAG(1)
4 IP-tag - automatic tagging of indented blocks
6 DDEESSCCRRIIPPTTIIOONN
27 OpenBSD November 24, 2023 IP-TAG(1)
H A Dlonghead.out_ascii1 IP-LONGHEAD(1) General Commands Manual IP-LONGHEAD(1)
4 IP-longhead - indented paragraph with a long head
6 DDEESSCCRRIIPPTTIIOONN
15 OpenBSD April 8, 2014 IP-LONGHEAD(1)
H A Dmanyargs.out_ascii1 IP-MANYARGS(1) General Commands Manual IP-MANYARGS(1)
4 IP-manyargs - too many header args for indented blocks
6 DDEESSCCRRIIPPTTIIOONN
36 OpenBSD January 4, 2011 IP-MANYARGS(1)
H A Dspacing.out_ascii1 IP-SPACING(1) General Commands Manual IP-SPACING(1)
4 IP-spacing - spacing in indentend paragraphs
6 DDEESSCCRRIIPPTTIIOONN
37 OpenBSD September 21, 2015 IP-SPACING(1)
/openbsd-src/gnu/llvm/llvm/tools/llvm-mca/
H A DCodeRegionGenerator.h89 parseCodeRegions(const std::unique_ptr<MCInstPrinter> &IP) = 0;
105 parseAnalysisRegions(const std::unique_ptr<MCInstPrinter> &IP) = 0;
117 parseInstrumentRegions(const std::unique_ptr<MCInstPrinter> &IP) = 0;
140 parseCodeRegions(const std::unique_ptr<MCInstPrinter> &IP) override;
158 parseAnalysisRegions(const std::unique_ptr<MCInstPrinter> &IP) override { in parseAnalysisRegions() argument
159 Expected<const CodeRegions &> RegionsOrErr = parseCodeRegions(IP); in parseAnalysisRegions()
167 parseCodeRegions(const std::unique_ptr<MCInstPrinter> &IP) override { in parseCodeRegions() argument
168 return AsmCodeRegionGenerator::parseCodeRegions(IP); in parseCodeRegions()
188 parseInstrumentRegions(const std::unique_ptr<MCInstPrinter> &IP) override { in parseInstrumentRegions() argument
189 Expected<const CodeRegions &> RegionsOrErr = parseCodeRegions(IP); in parseInstrumentRegions()
[all …]
/openbsd-src/libexec/snmpd/snmpd_metrics/
H A Dmib.h482 #define IP AGENTX_MIB2, 4 macro
483 #define IPFORWARDING IP, 1
484 #define IPDEFAULTTTL IP, 2
485 #define IPREASMTIMEOUT IP, 13
486 #define IPV6IPFORWARDING IP, 25
487 #define IPV6IPDEFAULTHOPLIMIT IP, 26
488 #define IPV4INTERFACETABLELASTCHANGE IP, 27
489 #define IPV4INTERFACETABLE IP, 28
495 #define IPV6INTERFACETABLELASTCHANGE IP, 29
496 #define IPV6INTERFACETABLE IP, 30
[all …]
/openbsd-src/etc/
H A Dprotocols3 # Internet (IP) protocols, RFC 1340
7 ip 0 IP HOPOPT # internet protocol, pseudo protocol number
11 ipencap 4 IP-ENCAP # IP encapsulated in IP (officially ``IP'')
60 swipe 53 SWIPE # IP with Encryption
86 iso-ip 80 ISO-IP # ISO Internet Protocol
100 ipip 94 IPIP # Yet Another IP encapsulation
103 etherip 97 ETHERIP # Ethernet-within-IP Encapsulation
104 encap 98 ENCAP # Yet Another IP encapsulation
108 pnni 102 PNNI # PNNI over IP
114 ipcomp 108 IPComp # IP Payload Compression Protocol
[all …]
/openbsd-src/regress/sys/netinet/frag/
H A Dfrag_timeout.py19 packet=IP(src=LOCAL_ADDR, dst=REMOTE_ADDR)/ \
23 frag.append(IP(src=LOCAL_ADDR, dst=REMOTE_ADDR, proto=1, id=fid,
25 frag.append(IP(src=LOCAL_ADDR, dst=REMOTE_ADDR, proto=1, id=fid,
27 frag.append(IP(src=LOCAL_ADDR, dst=REMOTE_ADDR, proto=1, id=fid,
29 frag.append(IP(src=LOCAL_ADDR, dst=REMOTE_ADDR, proto=1, id=fid,
31 frag.append(IP(src=LOCAL_ADDR, dst=REMOTE_ADDR, proto=1, id=fid,
33 frag.append(IP(src=LOCAL_ADDR, dst=REMOTE_ADDR, proto=1, id=fid,
/openbsd-src/regress/sys/kern/sosplice/error/
H A Dargs-EBUSY.pl5 use IO::Socket::IP;
11 my $sl = IO::Socket::IP->new(
17 my $s = IO::Socket::IP->new(
23 my $ss = IO::Socket::IP->new(
32 my $so = IO::Socket::IP->new(
H A Dargs-splice-EBUSY.pl5 use IO::Socket::IP;
11 my $sl = IO::Socket::IP->new(
17 my $s = IO::Socket::IP->new(
23 my $ss = IO::Socket::IP->new(
32 my $so = IO::Socket::IP->new(
/openbsd-src/regress/sbin/pfctl/
H A Dpfail16.ok1 no IP address found for 10.0.0.0.1
3 no IP address found for :80
5 no IP address found for 2000:0:0:0:0:0:0:0:0:1
7 no IP address found for 256.0.0.1
9 no IP address found for 10.0.0.0:network
/openbsd-src/gnu/llvm/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp98 std::unique_ptr<MCInstPrinter> IP(TheTarget->createMCInstPrinter( in LLVMCreateDisasmCPUFeatures() local
100 if (!IP) in LLVMCreateDisasmCPUFeatures()
106 std::move(DisAsm), std::move(IP)); in LLVMCreateDisasmCPUFeatures()
262 MCInstPrinter *IP = DC->getIP(); in LLVMDisasmInstruction() local
279 IP->printInst(&Inst, PC, AnnotationsStr, *DC->getSubtargetInfo(), in LLVMDisasmInstruction()
305 MCInstPrinter *IP = DC->getIP(); in LLVMSetDisasmOptions() local
306 IP->setUseMarkup(true); in LLVMSetDisasmOptions()
312 MCInstPrinter *IP = DC->getIP(); in LLVMSetDisasmOptions() local
313 IP->setPrintImmHex(true); in LLVMSetDisasmOptions()
325 MCInstPrinter *IP = DC->getTarget()->createMCInstPrinter( in LLVMSetDisasmOptions() local
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/podlators/t/data/
H A Dbasic.man97 .IP "This is a test." 4
104 .IP 1. 2
107 .IP a 2
110 .IP b 2
116 .IP 2. 2
119 .IP a 2
122 .IP b 2
125 .IP c 2
128 .IP d 2
138 .IP """foo""" 4
[all …]
/openbsd-src/regress/usr.bin/mandoc/man/TP/
H A Dtag.out_ascii1 IP-TAG(1) General Commands Manual IP-TAG(1)
4 IP-tag - automatic tagging of indented blocks
6 DDEESSCCRRIIPPTTIIOONN
33 OpenBSD November 24, 2023 IP-TAG(1)
/openbsd-src/regress/usr.sbin/bgpd/integrationtests/
H A Dbgpd.capa.client.conf3 IP=10.12.57.$NUM
5 router-id $IP
6 listen on $IP
13 local-address $IP

12345678910>>...40