Searched defs:ENV (Results 1 - 1 of 1) sorted by relevance

/system/core/init/
H A Dinit.c94 static const char *ENV[32]; variable
103 for (n = 0; n < (ARRAY_SIZE(ENV) - 1); n++) {
106 if (ENV[n] != NULL) {
107 size_t entry_key_len = strcspn(ENV[n], "=");
108 if ((entry_key_len == key_len) && (strncmp(ENV[n], key, entry_key_len) == 0)) {
109 free((char*)ENV[n]);
110 ENV[n] = NULL;
115 if (ENV[n] == NULL) {
119 ENV[n] = entry;
301 for (n = 0; ENV[
[all...]

Completed in 22 milliseconds