Home | History | Annotate | Download | only in rpc

Lines Matching full:exported

6 	Package rpc provides access to the exported methods of an object across a
8 as a service with the name of the type of the object. After registration, exported
16 - the method's type is exported.
17 - the method is exported.
18 - the method has two arguments, both exported (or builtin) types.
205 // Is this an exported - upper case - name?
211 // Is this type exported or a builtin?
216 // PkgPath will be non-empty even for an exported type,
223 // - exported method of exported type
224 // - two arguments, both of exported type
227 // It returns an error if the receiver is not an exported type or has
255 s := "rpc.Register: type " + sname + " is not exported"
270 str = "rpc.Register: type " + sname + " has no exported methods of suitable type (hint: pass a pointer to value of that type)"
272 str = "rpc.Register: type " + sname + " has no exported methods of suitable type"
292 // Method must be exported.
307 log.Printf("rpc.Register: argument type of method %q is not exported: %q\n", mname, argType)
319 // Reply type must be exported.
322 log.Printf("rpc.Register: reply type of method %q is not exported: %q\n", mname, replyType)