Home
last modified time | relevance | path

Searched refs:address (Results 1 – 25 of 147) sorted by relevance

123456

/php-src/win32/
H A Dsockets.c29 struct sockaddr_in address; in socketpair_win32() local
31 int size = sizeof(address); in socketpair_win32()
45 address.sin_addr.s_addr = INADDR_ANY; in socketpair_win32()
46 address.sin_family = AF_INET; in socketpair_win32()
47 address.sin_port = 0; in socketpair_win32()
49 if (bind(sock[0], (struct sockaddr *) &address, sizeof(address)) != 0) { in socketpair_win32()
53 if (getsockname(sock[0], (struct sockaddr *) &address, &size) != 0) { in socketpair_win32()
71 address.sin_addr.s_addr = htonl(INADDR_LOOPBACK); in socketpair_win32()
72 if (connect(sock[1], (struct sockaddr *) &address, sizeof(address)) != 0) { in socketpair_win32()
76 redirect = accept(sock[0], (struct sockaddr *) &address, &size); in socketpair_win32()
/php-src/Zend/asm/
H A Dmake_ppc32_sysv_xcoff_gas.S68 # save return address into R6
71 # first arg of make_fcontext() == top address of context-function
72 # shift address in R3 to lower 16 byte boundary
79 # third arg of make_fcontext() == address of context-function descriptor
100 # compute abs address of label .L_finish
104 # save address of finish as return-address for context-function
108 # restore return address from R6
114 # save return address into R0
116 # save return address on stack, set up stack frame
H A Dmake_ppc64_sysv_xcoff_gas.S80 # save return address into R6
83 # first arg of make_fcontext() == top address of context-function
84 # shift address in R3 to lower 16 byte boundary
91 # third arg of make_fcontext() == address of context-function descriptor
112 # compute abs address of label .L_finish
116 # save address of finish as return-address for context-function
120 # restore return address from R6
126 # save return address into R0
128 # save return address on stack, set up stack frame
H A Dmake_arm_aapcs_macho_gas.S45 @ shift address in A1 to lower 16 byte boundary
51 @ third arg of make_fcontext() == address of context-function
54 @ compute address of returned transfer_t
59 @ compute abs address of label finish
61 @ save address of finish as return-address for context-function
H A Dmake_ppc32_sysv_elf_gas.S59 # save return address into R6
62 # first arg of make_fcontext() == top address of context-function
63 # shift address in R3 to lower 16 byte boundary
70 # third arg of make_fcontext() == address of context-function
93 # load address of label 1 into R4
97 # compute abs address of trampoline, use as PC
101 # compute abs address of label finish
103 # save address of finish as return-address for context-function
107 # restore return address from R6
117 lwz %r0, 8(%r1) # address of context-function
[all …]
H A Dmake_ppc64_sysv_elf_gas.S99 # save return address into R6
102 # first arg of make_fcontext() == top address of context-stack
103 # shift address in R3 to lower 16 byte boundary
110 # third arg of make_fcontext() == address of context-function
113 # save address of context-function entry point
116 # save address of context-function entry point
140 # compute abs address of label finish
144 # save address of finish as return-address for context-function
148 # restore return address from R6
154 # save return address into R0
[all …]
H A Dmake_arm64_aapcs_pe_armasm.asm65 ; save stack top address to x3
68 ; shift address in x0 (allocated stack) to lower 16 byte boundary
74 ; save top address of context_stack as 'base'
76 ; save bottom address of context-stack as 'limit' and 'dealloction stack'
82 ; third arg of make_fcontext() == address of context-function
83 ; store address as x19 for trampoline
85 ; store trampoline address as pc
89 ; save address of finish as return-address for context-function
H A Dmake_arm_aapcs_elf_gas.S48 @ shift address in A1 to lower 16 byte boundary
54 @ third arg of make_fcontext() == address of context-function
57 @ compute address of returned transfer_t
62 @ compute abs address of label finish
64 @ save address of finish as return-address for context-function
H A Dmake_arm64_aapcs_macho_gas.S59 ; shift address in x0 (allocated stack) to lower 16 byte boundary
65 ; third arg of make_fcontext() == address of context-function
66 ; store address as a PC to jump in
71 ; save address of finish as return-address for context-function
H A Dmake_arm64_aapcs_elf_gas.S60 # shift address in x0 (allocated stack) to lower 16 byte boundary
66 # third arg of make_fcontext() == address of context-function
67 # store address as a PC to jump in
70 # save address of finish as return-address for context-function
H A Dmake_riscv64_sysv_elf_gas.S66 # shift address in a0 (allocated stack) to lower 16 byte boundary
72 # third arg of make_fcontext() == address of context-function
73 # store address as a PC to jump in
76 # save address of finish as return-address for context-function
H A Dmake_i386_ms_pe_masm.asm37 ; shift address in EAX to lower 16 byte boundary
52 ; save top address of context stack as 'base'
58 ; compute bottom address of context stack (limit)
60 ; save bottom address of context-stack as 'limit'
73 ; compute abs address of label trampoline
75 ; save address of trampoline as return-address for context-function
79 ; compute abs address of label finish
81 ; save address of finish as return-address for context-function in EBP
102 ; exchange content; ECX contains address of next SEH
110 ; save address in ECX as SEH handler for context
[all …]
H A Dmake_ppc32_sysv_macho_gas.S80 ; save return address into R6
83 ; first arg of make_fcontext() == top address of context-function
84 ; shift address in R3 to lower 16 byte boundary
91 ; third arg of make_fcontext() == address of context-function
H A Dmake_loongarch64_sysv_elf_gas.S47 # shift address in A0 to lower 16 byte boundary
53 # third arg of make_fcontext() == address of context-function
56 # save address of finish as return-address for context-function
H A Dmake_mips32_o32_elf_gas.S53 # shift address in A0 to lower 16 byte boundary
66 # third arg of make_fcontext() == address of context-function
71 # compute address of returned transfer_t
75 # compute abs address of label finish
77 # save address of finish as return-address for context-function
/php-src/ext/standard/tests/file/
H A Dstream_002.phpt22 Warning: stream_socket_client(): Unable to connect to (Failed to parse address "") in %s on line %d
25 string(26) "Failed to parse address """
27 Warning: stream_socket_client(): Unable to connect to [ (Failed to parse address "[") in %s on line…
30 string(27) "Failed to parse address "[""
37 Warning: stream_socket_client(): Unable to connect to . (Failed to parse address ".") in %s on line…
40 string(27) "Failed to parse address ".""
42 Warning: stream_socket_client(): Unable to connect to 1 (Failed to parse address "1") in %s on line…
45 string(27) "Failed to parse address "1""
/php-src/ext/sockets/tests/
H A Dsocket_sentto_recvfrom_unix.phpt22 $address = sprintf("/tmp/%s.sock", uniqid());
23 if (!socket_bind($socket, $address)) {
24 die("Unable to bind to $address");
29 $bytes_sent = socket_sendto($socket, $msg, $len, 0, $address);
31 @unlink($address);
34 @unlink($address);
42 @unlink($address);
45 @unlink($address);
51 @unlink($address);
H A Dsocket_sendto_zerocopy.phpt34 $address = '127.0.0.1';
36 if (!socket_bind($s, $address, $port)) {
37 die("Unable to bind to $address");
43 $bytes_sent = socket_sendto($socket, $msg, $len, MSG_ZEROCOPY, $address, $port);
44 if (socket_recvfrom($s, $resp, 0, MSG_ERRQUEUE, $address, $port) == -1) die ("recvfrom MSG_ERRQUEUE…
45 $bytes_recv = socket_recvfrom($s, $resp, 16, 0, $address, $port);
H A Dgh13603.phpt10 socket_getsockname($socket, $address);
11 var_dump($address);
13 unlink($address);
H A Dsocket_sentto_recvfrom_ipv4_udp.phpt18 socket_getsockname($socket, $address, $port);
22 $sent = socket_sendto($socket, $msg, $len, 0, $address, $port);
39 $socket, $buffering, $wants, 0, $address, $port);
63 echo "Received $buf from remote address $address and remote port $port" . PHP_EOL;
66 Received Ping! from remote address %s and remote port %d
H A Dsocket_sentto_recvfrom_ipv6_udp.phpt26 socket_getsockname($socket, $address, $port);
30 $sent = socket_sendto($socket, $msg, $len, 0, $address, $port);
47 $socket, $buffering, $wants, 0, $address, $port);
71 echo "Received $buf from remote address $address and remote port $port" . PHP_EOL;
74 Received Ping! from remote address %s and remote port %d
H A Dsocket_sentto_recvfrom_ipv6_udp-win32.phpt23 $address = '::1';
24 if (!socket_bind($socket, $address, 1223)) {
25 die("Unable to bind to $address:1223");
30 $bytes_sent = socket_sendto($socket, $msg, $len, 0, $address, 1223);
45 echo "Received $buf from remote address $from and remote port $port" . PHP_EOL;
51 Received Ping! from remote address ::1 and remote port 1223
/php-src/tests/classes/
H A Dclass_example.phpt9 public $first_name,$family_name,$address,$phone_num;
16 echo "Address:\t ".$this->address."\n";
20 function initialize($first_name,$family_name,$address,$phone_num)
24 $this->address = $address;
34 $t->address = "New address...";
83 Address: New address...
/php-src/ext/soap/tests/bugs/
H A Dbug38536.phpt24 <address href="#i2"/>
27 <xsd:address id="i2" xsi:type="ns1:ClientAddressType" SOAP-ENC:root="0">
29 <address href="#i3"/>
30 </xsd:address>
31 <address xsi:type="xsd:string" id="i3" SOAP-ENC:root="0">Test</address>
46 [address] => stdClass Object
49 [address] => Test
/php-src/ext/filter/tests/
H A Dbug52929.phpt7 var_dump(filter_var('valid@email.address', FILTER_VALIDATE_EMAIL));
9 // Beyond the allowable limit for an e-mail address.
12 // An invalid address likely to crash PHP due to stack exhaustion if it goes to
17 string(19) "valid@email.address"

Completed in 35 milliseconds

123456