env                45 lib/zlib/contrib/blast/blast.c     jmp_buf env;
env                75 lib/zlib/contrib/blast/blast.c             if (s->left == 0) longjmp(s->env, 1);       /* out of input */
env               159 lib/zlib/contrib/blast/blast.c             if (s->left == 0) longjmp(s->env, 1);       /* out of input */
env               396 lib/zlib/contrib/blast/blast.c     if (setjmp(s.env) != 0)             /* if came back here via longjmp(), */
env                97 lib/zlib/contrib/puff/puff.c     jmp_buf env;
env               118 lib/zlib/contrib/puff/puff.c         if (s->incnt == s->inlen) longjmp(s->env, 1);   /* out of input */
env               279 lib/zlib/contrib/puff/puff.c         if (s->incnt == s->inlen) longjmp(s->env, 1);   /* out of input */
env               762 lib/zlib/contrib/puff/puff.c     if (setjmp(s.env) != 0)             /* if came back here via longjmp() */
env               354 nsswitch/winbind_krb5_locator.c 		const char *env = NULL;
env               360 nsswitch/winbind_krb5_locator.c 		env = getenv(var);
env               361 nsswitch/winbind_krb5_locator.c 		if (!env) {
env               372 nsswitch/winbind_krb5_locator.c 		kdc_name = strdup(env);
env               161 source3/lib/netapi/netapi.c 		char *env = getenv(KRB5_ENV_CCNAME);
env               162 source3/lib/netapi/netapi.c 		if (env && (strequal(ctx->krb5_cc_env, env))) {
env               646 source3/libads/ldap.c 		char *env = NULL;
env               647 source3/libads/ldap.c 		if (asprintf(&env, "KRB5_KDC_ADDRESS_%s", ads->config.realm) > 0) {
env               648 source3/libads/ldap.c 			setenv(env, ads->auth.kdc_server, 1);
env               649 source3/libads/ldap.c 			free(env);
env              1419 source3/rpcclient/cmd_spoolss.c 	const char *env = SPOOLSS_ARCHITECTURE_NT_X86;
env              1433 source3/rpcclient/cmd_spoolss.c 		env = argv[1];
env              1440 source3/rpcclient/cmd_spoolss.c 							  env,
env              1453 source3/rpcclient/cmd_spoolss.c 								  env,
env               937 source3/utils/net_rpc_printer.c 					uint32_t level, const char *env,
env               946 source3/utils/net_rpc_printer.c 						   env,
env               962 source3/utils/net_rpc_printer.c 			     const char *env, int version,
env               972 source3/utils/net_rpc_printer.c 						  env,
env               982 source3/utils/net_rpc_printer.c 			env, win_errstr(result)));
env               149 source4/heimdal/kdc/kx509.c     hx509_env env = NULL;
env               163 source4/heimdal/kdc/kx509.c     ret = hx509_env_add(hxctx, &env, "principal-name",
env               254 source4/heimdal/kdc/kx509.c     hx509_ca_tbs_subject_expand(hxctx, tbs, env);
env               255 source4/heimdal/kdc/kx509.c     hx509_env_free(&env);
env               273 source4/heimdal/kdc/kx509.c     if (env)
env               274 source4/heimdal/kdc/kx509.c 	hx509_env_free(&env);
env               860 source4/heimdal/lib/hx509/ca.c 			    hx509_env env)
env               862 source4/heimdal/lib/hx509/ca.c     return hx509_name_expand(context, tbs->subject, env);
env              2931 source4/heimdal/lib/hx509/cert.c 	hx509_env env = NULL;
env              2933 source4/heimdal/lib/hx509/cert.c 	ret = _hx509_cert_to_env(context, cert, &env);
env              2937 source4/heimdal/lib/hx509/cert.c 	ret = _hx509_expr_eval(context, env, q->expr);
env              2938 source4/heimdal/lib/hx509/cert.c 	hx509_env_free(&env);
env              3267 source4/heimdal/lib/hx509/cert.c _hx509_cert_to_env(hx509_context context, hx509_cert cert, hx509_env *env)
env              3275 source4/heimdal/lib/hx509/cert.c     *env = NULL;
env              3351 source4/heimdal/lib/hx509/cert.c     ret = hx509_env_add_binding(context, env, "certificate", envcert);
env                57 source4/heimdal/lib/hx509/env.c hx509_env_add(hx509_context context, hx509_env *env,
env                83 source4/heimdal/lib/hx509/env.c     if (*env) {
env                84 source4/heimdal/lib/hx509/env.c 	hx509_env e = *env;
env                89 source4/heimdal/lib/hx509/env.c 	*env = n;
env               108 source4/heimdal/lib/hx509/env.c hx509_env_add_binding(hx509_context context, hx509_env *env,
env               129 source4/heimdal/lib/hx509/env.c     if (*env) {
env               130 source4/heimdal/lib/hx509/env.c 	hx509_env e = *env;
env               135 source4/heimdal/lib/hx509/env.c 	*env = n;
env               155 source4/heimdal/lib/hx509/env.c hx509_env_lfind(hx509_context context, hx509_env env,
env               158 source4/heimdal/lib/hx509/env.c     while(env) {
env               159 source4/heimdal/lib/hx509/env.c 	if (strncmp(key, env->name ,len) == 0
env               160 source4/heimdal/lib/hx509/env.c 	    && env->name[len] == '\0' && env->type == env_string)
env               161 source4/heimdal/lib/hx509/env.c 	    return env->u.string;
env               162 source4/heimdal/lib/hx509/env.c 	env = env->next;
env               180 source4/heimdal/lib/hx509/env.c hx509_env_find(hx509_context context, hx509_env env, const char *key)
env               182 source4/heimdal/lib/hx509/env.c     while(env) {
env               183 source4/heimdal/lib/hx509/env.c 	if (strcmp(key, env->name) == 0 && env->type == env_string)
env               184 source4/heimdal/lib/hx509/env.c 	    return env->u.string;
env               185 source4/heimdal/lib/hx509/env.c 	env = env->next;
env               204 source4/heimdal/lib/hx509/env.c 		       hx509_env env,
env               207 source4/heimdal/lib/hx509/env.c     while(env) {
env               208 source4/heimdal/lib/hx509/env.c 	if (strcmp(key, env->name) == 0 && env->type == env_list)
env               209 source4/heimdal/lib/hx509/env.c 	    return env->u.list;
env               210 source4/heimdal/lib/hx509/env.c 	env = env->next;
env               241 source4/heimdal/lib/hx509/env.c hx509_env_free(hx509_env *env)
env               243 source4/heimdal/lib/hx509/env.c     if (*env)
env               244 source4/heimdal/lib/hx509/env.c 	env_free(*env);
env               245 source4/heimdal/lib/hx509/env.c     *env = NULL;
env               699 source4/heimdal/lib/hx509/name.c 		  hx509_env env)
env               704 source4/heimdal/lib/hx509/name.c     if (env == NULL)
env               752 source4/heimdal/lib/hx509/name.c 		value = hx509_env_lfind(context, env, p, p2 - p);
env                52 source4/heimdal/lib/hx509/sel.c eval_word(hx509_context context, hx509_env env, struct hx_expr *word)
env                59 source4/heimdal/lib/hx509/sel.c 	    return hx509_env_find(context, env, word->arg1);
env                61 source4/heimdal/lib/hx509/sel.c 	env = hx509_env_find_binding(context, env, word->arg1);
env                62 source4/heimdal/lib/hx509/sel.c 	if (env == NULL)
env                65 source4/heimdal/lib/hx509/sel.c 	return eval_word(context, env, word->arg2);
env                72 source4/heimdal/lib/hx509/sel.c find_variable(hx509_context context, hx509_env env, struct hx_expr *word)
env                77 source4/heimdal/lib/hx509/sel.c 	return hx509_env_find_binding(context, env, word->arg1);
env                79 source4/heimdal/lib/hx509/sel.c     env = hx509_env_find_binding(context, env, word->arg1);
env                80 source4/heimdal/lib/hx509/sel.c     if (env == NULL)
env                82 source4/heimdal/lib/hx509/sel.c     return find_variable(context, env, word->arg2);
env                86 source4/heimdal/lib/hx509/sel.c eval_comp(hx509_context context, hx509_env env, struct hx_expr *expr)
env                95 source4/heimdal/lib/hx509/sel.c 	s1 = eval_word(context, env, expr->arg1);
env                96 source4/heimdal/lib/hx509/sel.c 	s2 = eval_word(context, env, expr->arg2);
env               119 source4/heimdal/lib/hx509/sel.c 	w = eval_word(context, env, expr->arg1);
env               125 source4/heimdal/lib/hx509/sel.c 		s1 = eval_word(context, env, subexpr->arg1);
env               133 source4/heimdal/lib/hx509/sel.c 	    subenv = find_variable(context, env, subexpr);
env               159 source4/heimdal/lib/hx509/sel.c _hx509_expr_eval(hx509_context context, hx509_env env, struct hx_expr *expr)
env               167 source4/heimdal/lib/hx509/sel.c 	return ! _hx509_expr_eval(context, env, expr->arg1);
env               169 source4/heimdal/lib/hx509/sel.c 	return _hx509_expr_eval(context, env, expr->arg1) &&
env               170 source4/heimdal/lib/hx509/sel.c 	    _hx509_expr_eval(context, env, expr->arg2);
env               172 source4/heimdal/lib/hx509/sel.c 	return _hx509_expr_eval(context, env, expr->arg1) ||
env               173 source4/heimdal/lib/hx509/sel.c 	    _hx509_expr_eval(context, env, expr->arg2);
env               175 source4/heimdal/lib/hx509/sel.c 	return eval_comp(context, env, expr->arg1);
env                75 source4/heimdal/lib/hx509/test_name.c     hx509_env env = NULL;
env                80 source4/heimdal/lib/hx509/test_name.c     hx509_env_add(context, &env, "uid", "lha");
env                86 source4/heimdal/lib/hx509/test_name.c     ret = hx509_name_expand(context, n, env);
env                87 source4/heimdal/lib/hx509/test_name.c     hx509_env_free(&env);
env               376 source4/heimdal/lib/roken/roken-common.h read_environment(const char *file, char ***env);
env               261 source4/web_server/wsgi.c 	PyObject *env;
env               267 source4/web_server/wsgi.c 	env = PyDict_New();
env               268 source4/web_server/wsgi.c 	if (env == NULL) {
env               274 source4/web_server/wsgi.c 		Py_DECREF(env);
env               279 source4/web_server/wsgi.c 	PyDict_SetItemString(env, "wsgi.input", inputstream);
env               280 source4/web_server/wsgi.c 	PyDict_SetItemString(env, "wsgi.errors", errorstream);
env               281 source4/web_server/wsgi.c 	PyDict_SetItemString(env, "wsgi.version", Py_BuildValue("(i,i)", 1, 0));
env               282 source4/web_server/wsgi.c 	PyDict_SetItemString(env, "wsgi.multithread", Py_False);
env               283 source4/web_server/wsgi.c 	PyDict_SetItemString(env, "wsgi.multiprocess", Py_True);
env               284 source4/web_server/wsgi.c 	PyDict_SetItemString(env, "wsgi.run_once", Py_False);
env               285 source4/web_server/wsgi.c 	PyDict_SetItemString(env, "SERVER_PROTOCOL", PyString_FromString("HTTP/1.0"));
env               287 source4/web_server/wsgi.c 		PyDict_SetItemString(env, "CONTENT_LENGTH", PyLong_FromLong(content_length));
env               289 source4/web_server/wsgi.c 	PyDict_SetItemString(env, "REQUEST_METHOD", PyString_FromString(request_method));
env               293 source4/web_server/wsgi.c 		PyDict_SetItemString(env, "SCRIPT_NAME", PyString_FromString(request_string));
env               295 source4/web_server/wsgi.c 		PyDict_SetItemString(env, "QUERY_STRING", PyString_FromString(questionmark+1));
env               296 source4/web_server/wsgi.c 		PyDict_SetItemString(env, "SCRIPT_NAME", PyString_FromStringAndSize(request_string, questionmark-request_string));
env               299 source4/web_server/wsgi.c 	PyDict_SetItemString(env, "SERVER_NAME", PyString_FromString(servername));
env               300 source4/web_server/wsgi.c 	PyDict_SetItemString(env, "SERVER_PORT", PyInt_FromLong(serverport));
env               304 source4/web_server/wsgi.c 			PyDict_SetItemString(env, "CONTENT_TYPE", PyString_FromString(hdr->value));
env               307 source4/web_server/wsgi.c 			PyDict_SetItemString(env, name, PyString_FromString(hdr->value));
env               317 source4/web_server/wsgi.c 	PyDict_SetItemString(env, "wsgi.url_scheme", py_scheme);
env               319 source4/web_server/wsgi.c 	return env;