Home
last modified time | relevance | path

Searched refs:ev_value (Results 1 – 9 of 9) sorted by relevance

/titanic_53/usr/src/boot/lib/libstand/
H A Denvironment.c81 if (ev->ev_value != NULL && (ev->ev_flags & EV_DYNAMIC) != 0) in env_setenv()
82 free(ev->ev_value); in env_setenv()
83 ev->ev_value = NULL; in env_setenv()
93 ev->ev_value = NULL; in env_setenv()
131 ev->ev_value = strdup(value); in env_setenv()
134 ev->ev_value = (char *)value; in env_setenv()
148 if (ev->ev_value != NULL) in getenv()
149 return(ev->ev_value); in getenv()
207 if (ev->ev_value != NULL && (ev->ev_flags & EV_DYNAMIC) != 0) in env_discard()
208 free(ev->ev_value); in env_discard()
H A Dstand.h323 void *ev_value; member
/titanic_53/usr/src/boot/sys/boot/userboot/userboot/
H A Dbootinfo.c160 if (ep->ev_value != NULL) { in bi_copyenv()
161 CALLBACK(copyin, ep->ev_value, addr, strlen(ep->ev_value)); in bi_copyenv()
162 addr += strlen(ep->ev_value); in bi_copyenv()
/titanic_53/usr/src/boot/sys/boot/i386/libi386/
H A Dbootinfo.c165 if (ep->ev_value != NULL) { in bi_copyenv()
166 i386_copyin(ep->ev_value, addr, strlen(ep->ev_value)); in bi_copyenv()
167 addr += strlen(ep->ev_value); in bi_copyenv()
/titanic_53/usr/src/boot/sys/boot/sparc64/loader/
H A Dmetadata.c172 if (ep->ev_value != NULL) { in md_copyenv()
173 archsw.arch_copyin(ep->ev_value, addr, strlen(ep->ev_value)); in md_copyenv()
174 addr += strlen(ep->ev_value); in md_copyenv()
/titanic_53/usr/src/boot/sys/boot/uboot/common/
H A Dmetadata.c140 if (ep->ev_value != NULL) { in md_copyenv()
141 archsw.arch_copyin(ep->ev_value, addr, in md_copyenv()
142 strlen(ep->ev_value)); in md_copyenv()
143 addr += strlen(ep->ev_value); in md_copyenv()
/titanic_53/usr/src/boot/sys/boot/efi/loader/arch/i386/
H A Dbootinfo.c107 if (ep->ev_value != NULL) { in bi_copyenv()
108 len = strlen(ep->ev_value); in bi_copyenv()
109 if (i386_copyin(ep->ev_value, addr, len) != len) in bi_copyenv()
/titanic_53/usr/src/boot/sys/boot/efi/loader/
H A Dbootinfo.c132 if (ep->ev_value != NULL) { in bi_copyenv()
133 len = strlen(ep->ev_value); in bi_copyenv()
134 if ((size_t)archsw.arch_copyin(ep->ev_value, addr, len) != len) in bi_copyenv()
/titanic_53/usr/src/boot/sys/boot/common/
H A Dmodule.c418 if (ep->ev_value != NULL) in env_get_size()
419 size += strlen(ep->ev_value); in env_get_size()