github.com/goproxy0/go@v0.0.0-20171111080102-49cc0c489d2c/src/os/user/lookup_android.go (about) 1 // Copyright 2016 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // +build android 6 7 package user 8 9 import "errors" 10 11 func lookupUser(string) (*User, error) { 12 return nil, errors.New("user: Lookup not implemented on android") 13 } 14 15 func lookupUserId(string) (*User, error) { 16 return nil, errors.New("user: LookupId not implemented on android") 17 } 18 19 func lookupGroup(string) (*Group, error) { 20 return nil, errors.New("user: LookupGroup not implemented on android") 21 } 22 23 func lookupGroupId(string) (*Group, error) { 24 return nil, errors.New("user: LookupGroupId not implemented on android") 25 }