Searched refs:decodeKeyValue (Results 1 – 4 of 4) sorted by relevance
/build/soong/ui/build/ |
D | environment.go | 41 if k, v, ok := decodeKeyValue(envVar); ok { 54 if k, v, ok := decodeKeyValue(envVar); ok && k == key { 83 if key, _, ok := decodeKeyValue(envVar); ok && inList(key, keys) { 96 if key, _, ok := decodeKeyValue(envVar); ok && strings.HasPrefix(key, prefix) { 109 if key, _, ok := decodeKeyValue(envVar); ok && inList(key, keys) { 187 key, value, ok := decodeKeyValue(cmd[1])
|
D | util.go | 123 func decodeKeyValue(str string) (string, string, bool) { func
|
D | dumpvars.go | 120 if key, value, ok := decodeKeyValue(line); ok {
|
D | config.go | 609 } else if k, v, ok := decodeKeyValue(arg); ok && len(k) > 0 {
|