HomeSort by relevance Sort by last modified time
    Searched full:nil (Results 276 - 300 of 5764) sorted by null

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/net/
fd_unix.go 44 return &netFD{sysfd: sysfd, family: family, sotype: sotype, net: net}, nil
48 if err := fd.pd.Init(fd); err != nil {
51 return nil
62 if fd.laddr != nil {
65 if fd.raddr != nil {
77 case nil, syscall.EISCONN:
81 if err := fd.init(); err != nil {
84 return nil
92 return nil
98 if err := fd.init(); err != nil {
    [all...]
external_test.go 24 if err != nil {
29 case network == "tcp" && addr.IP.To4() == nil:
31 case network == "tcp4" && addr.IP.To4() == nil:
33 case network == "tcp6" && (addr.IP.To16() == nil || addr.IP.To4() != nil):
72 if err != nil {
79 if err := fetchGoogle(tt.dial, network, addr); err != nil {
111 if err != nil {
112 return nil, nil, er
    [all...]
udpsock_posix.go 21 return nil
25 if a == nil || len(a.IP) <= IPv4len {
28 if a.IP.To4() != nil {
35 if a == nil {
36 return nil, nil
58 return 0, nil, syscall.EINVAL
68 if err != nil {
77 return 0, nil, syscall.EINVAL
80 if addr == nil {
    [all...]
  /prebuilts/go/linux-x86/src/net/
dial.go 41 // If nil, a local address is automatically chosen.
80 return deadline, nil
97 return now.Add(timeout), nil
119 return net, 0, nil
128 if err != nil {
132 return afnet, proto, nil
139 if err != nil {
140 return nil, err
143 return nil, errMissingAddress
148 if err != nil {
    [all...]
fd_unix.go 44 return &netFD{sysfd: sysfd, family: family, sotype: sotype, net: net}, nil
48 if err := fd.pd.Init(fd); err != nil {
51 return nil
62 if fd.laddr != nil {
65 if fd.raddr != nil {
77 case nil, syscall.EISCONN:
81 if err := fd.init(); err != nil {
84 return nil
92 return nil
98 if err := fd.init(); err != nil {
    [all...]
external_test.go 24 if err != nil {
29 case network == "tcp" && addr.IP.To4() == nil:
31 case network == "tcp4" && addr.IP.To4() == nil:
33 case network == "tcp6" && (addr.IP.To16() == nil || addr.IP.To4() != nil):
72 if err != nil {
79 if err := fetchGoogle(tt.dial, network, addr); err != nil {
111 if err != nil {
112 return nil, nil, er
    [all...]
udpsock_posix.go 21 return nil
25 if a == nil || len(a.IP) <= IPv4len {
28 if a.IP.To4() != nil {
35 if a == nil {
36 return nil, nil
58 return 0, nil, syscall.EINVAL
68 if err != nil {
77 return 0, nil, syscall.EINVAL
80 if addr == nil {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/profile/
proto.go 153 return 0, nil, errors.New("bad varint")
157 return u, data[i+1:], nil
164 if err != nil {
165 return nil, err
169 b.data = nil
174 if err != nil {
175 return nil, err
179 return nil, errors.New("not enough data")
186 if err != nil {
187 return nil, er
    [all...]
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/profile/
proto.go 153 return 0, nil, errors.New("bad varint")
157 return u, data[i+1:], nil
164 if err != nil {
165 return nil, err
169 b.data = nil
174 if err != nil {
175 return nil, err
179 return nil, errors.New("not enough data")
186 if err != nil {
187 return nil, er
    [all...]
  /prebuilts/go/darwin-x86/src/internal/syscall/windows/registry/
key.go 12 // if err != nil {
18 // if err != nil {
81 if err != nil {
86 if err != nil {
89 return Key(subkey), nil
97 if err != nil {
98 return nil, err
106 return names, nil
111 err := syscall.RegEnumKeyEx(syscall.Handle(k), i, &buf[0], &l, nil, nil, nil, nil
    [all...]
value.go 56 if err != nil {
64 err = syscall.RegQueryValueEx(syscall.Handle(k), pname, nil, &valtype, pbuf, &l)
65 if err != nil {
68 return int(l), valtype, nil
73 if err != nil {
74 return nil, 0, err
79 err = syscall.RegQueryValueEx(syscall.Handle(k), p, nil, &t, (*byte)(unsafe.Pointer(&buf[0])), &n)
80 if err == nil {
81 return buf[:n], t, nil
84 return nil, 0, er
    [all...]
  /prebuilts/go/linux-x86/src/internal/syscall/windows/registry/
key.go 12 // if err != nil {
18 // if err != nil {
81 if err != nil {
86 if err != nil {
89 return Key(subkey), nil
97 if err != nil {
98 return nil, err
106 return names, nil
111 err := syscall.RegEnumKeyEx(syscall.Handle(k), i, &buf[0], &l, nil, nil, nil, nil
    [all...]
value.go 56 if err != nil {
64 err = syscall.RegQueryValueEx(syscall.Handle(k), pname, nil, &valtype, pbuf, &l)
65 if err != nil {
68 return int(l), valtype, nil
73 if err != nil {
74 return nil, 0, err
79 err = syscall.RegQueryValueEx(syscall.Handle(k), p, nil, &t, (*byte)(unsafe.Pointer(&buf[0])), &n)
80 if err == nil {
81 return buf[:n], t, nil
84 return nil, 0, er
    [all...]
  /external/boringssl/src/ssl/test/runner/
key_agreement.go 42 return nil, nil
48 if err != nil {
49 return nil, err
63 if tls12HashId, err = pickTLS12HashForSignature(signatureRSA, clientHello.signatureAndHashes, config.signatureAndHashesForServer()); err != nil {
64 return nil, err
69 if err != nil {
70 return nil, err
74 return nil, errors.New("RSA ephemeral key requires an RSA server private key")
77 if err != nil {
    [all...]
  /prebuilts/go/darwin-x86/src/os/exec/
exec.go 47 // If the Args field is empty or nil, Run uses {Path}.
53 // If Env is nil, Run uses the current process's environment.
62 // If Stdin is nil, the process reads from the null device (os.DevNull).
74 // If either is nil, Run connects the corresponding file descriptor
84 // standard error. If non-nil, entry i becomes file descriptor 3+i.
128 if lp, err := LookPath(name); err != nil {
147 if c.Env != nil {
162 // It is non-nil everywhere but Plan 9, which lacks EPIPE. See exec_posix.go.
166 if c.Stdin == nil {
168 if err != nil {
    [all...]
  /prebuilts/go/linux-x86/src/os/exec/
exec.go 47 // If the Args field is empty or nil, Run uses {Path}.
53 // If Env is nil, Run uses the current process's environment.
62 // If Stdin is nil, the process reads from the null device (os.DevNull).
74 // If either is nil, Run connects the corresponding file descriptor
84 // standard error. If non-nil, entry i becomes file descriptor 3+i.
128 if lp, err := LookPath(name); err != nil {
147 if c.Env != nil {
162 // It is non-nil everywhere but Plan 9, which lacks EPIPE. See exec_posix.go.
166 if c.Stdin == nil {
168 if err != nil {
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
check.go 39 val constant.Value // constant value; or nil (if not a constant)
54 iota constant.Value // value of iota in a constant declaration; nil otherwise
55 sig *Signature // function signature if inside a function; nil otherwise
96 if mm == nil {
101 if m == nil {
111 if from == nil {
122 if m == nil {
131 if m == nil {
150 if conf == nil {
155 if info == nil {
    [all...]
object.go 24 Pkg() *Package // nil for objects in the Universe scope and labels
67 // TODO(gri): shouldn't !ast.IsExported(name) => pkg != nil be an precondition?
68 // if pkg == nil {
69 // panic("nil package in lookup of unexported name")
71 if pkg != nil {
118 // not exported, so packages must be the same (pkg == nil for
121 if pkg == nil || obj.pkg == nil {
124 // pkg != nil && obj.pkg != nil
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
check.go 39 val constant.Value // constant value; or nil (if not a constant)
54 iota constant.Value // value of iota in a constant declaration; nil otherwise
55 sig *Signature // function signature if inside a function; nil otherwise
96 if mm == nil {
101 if m == nil {
111 if from == nil {
122 if m == nil {
131 if m == nil {
150 if conf == nil {
155 if info == nil {
    [all...]
object.go 24 Pkg() *Package // nil for objects in the Universe scope and labels
67 // TODO(gri): shouldn't !ast.IsExported(name) => pkg != nil be an precondition?
68 // if pkg == nil {
69 // panic("nil package in lookup of unexported name")
71 if pkg != nil {
118 // not exported, so packages must be the same (pkg == nil for
121 if pkg == nil || obj.pkg == nil {
124 // pkg != nil && obj.pkg != nil
    [all...]
  /build/kati/
serialize.go 72 if d.err != nil {
80 if d.err != nil {
84 if d.err != nil {
91 if d.err != nil {
95 if d.err != nil {
102 if d.err != nil {
148 if err != nil {
151 return buf.String(), nil
191 if ns.err != nil {
230 if err != nil {
    [all...]
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
typecheck.go 30 if n != nil && n.Op == ONONAME && n.Sym != nil {
32 if r != nil {
45 for ; l != nil; l = l.Next {
77 TNIL: "nil",
102 for l := stack; l != nil; l = l.Next {
129 if n == nil {
130 return nil
182 for l := typecheck_tcstack; l != nil; l = l.Next {
195 if typecheck_tcfree != nil {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
typecheck.go 27 if n != nil && n.Op == ONONAME && n.Sym != nil {
29 if r != nil {
42 for ; l != nil; l = l.Next {
74 TNIL: "nil",
99 for l := stack; l != nil; l = l.Next {
126 if n == nil {
127 return nil
179 for l := typecheck_tcstack; l != nil; l = l.Next {
192 if typecheck_tcfree != nil {
    [all...]
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
typecheck.go 30 if n != nil && n.Op == ONONAME && n.Sym != nil {
32 if r != nil {
45 for ; l != nil; l = l.Next {
77 TNIL: "nil",
102 for l := stack; l != nil; l = l.Next {
129 if n == nil {
130 return nil
182 for l := typecheck_tcstack; l != nil; l = l.Next {
195 if typecheck_tcfree != nil {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
typecheck.go 27 if n != nil && n.Op == ONONAME && n.Sym != nil {
29 if r != nil {
42 for ; l != nil; l = l.Next {
74 TNIL: "nil",
99 for l := stack; l != nil; l = l.Next {
126 if n == nil {
127 return nil
179 for l := typecheck_tcstack; l != nil; l = l.Next {
192 if typecheck_tcfree != nil {
    [all...]

Completed in 475 milliseconds

<<11121314151617181920>>