Home
last modified time | relevance | path

Searched refs:decodeKeyValue (Results 1 – 4 of 4) sorted by relevance

/build/soong/ui/build/
Denvironment.go41 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])
Dutil.go123 func decodeKeyValue(str string) (string, string, bool) { func
Ddumpvars.go120 if key, value, ok := decodeKeyValue(line); ok {
Dconfig.go609 } else if k, v, ok := decodeKeyValue(arg); ok && len(k) > 0 {