HomeSort by relevance Sort by last modified time
    Searched refs:env (Results 1 - 25 of 3758) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/winsys/sw/dri/
SConscript 7 if env['platform'] in ('linux', 'sunos'):
9 env = env.Clone()
11 env.Append(CPPPATH = [
16 ws_dri = env.ConvenienceLibrary(
18 source = env.ParseSourceList('Makefile.sources', 'C_SOURCES'),
  /external/mesa3d/src/gallium/winsys/sw/gdi/
SConscript 7 if env['platform'] == 'windows':
9 env = env.Clone()
11 env.Append(CPPPATH = [
17 ws_gdi = env.ConvenienceLibrary(
23 env.Alias('ws_gdi', ws_gdi)
  /external/mesa3d/src/gallium/winsys/sw/xlib/
SConscript 7 if env['platform'] in ('cygwin', 'darwin', 'freebsd', 'linux', 'sunos'):
9 env = env.Clone()
11 env.Append(CPPPATH = [
16 ws_xlib = env.ConvenienceLibrary(
18 source = env.ParseSourceList('Makefile.sources', 'C_SOURCES'),
20 env.Alias('ws_xlib', ws_xlib)
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
SConscript 6 env = env.Clone()
8 env.Append(CPPPATH = [
14 st_xlib = env.ConvenienceLibrary(
16 source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
  /external/mesa3d/src/gallium/winsys/sw/hgl/
SConscript 7 if env['platform'] in ('haiku'):
9 env = env.Clone()
11 env.Append(CPPPATH = [
18 ws_haiku = env.ConvenienceLibrary(
  /external/mesa3d/src/gallium/winsys/sw/wrapper/
SConscript 7 env = env.Clone()
9 env.Append(CPPPATH = [
14 ws_wrapper = env.ConvenienceLibrary(
16 source = env.ParseSourceList('Makefile.sources', 'C_SOURCES'),
  /external/mesa3d/scons/
x11.py 31 def generate(env):
32 env.Append(CPPPATH = ['/usr/X11R6/include'])
33 env.Append(LIBPATH = ['/usr/X11R6/lib'])
35 env.Append(LIBS = [
44 def exists(env):
46 if env['platform'] in ('linux', 'freebsd', 'darwin'):
gallium.py 47 def symlink(target, source, env):
54 def install(env, source, subdir):
55 target_dir = os.path.join(env.Dir('#.').srcnode().abspath, env['build_dir'], subdir)
56 return env.Install(target_dir, source)
58 def install_program(env, source):
59 return install(env, source, 'bin')
61 def install_shared_library(env, sources, version = ()):
63 install_dir = os.path.join(env.Dir('#.').srcnode().abspath, env['build_dir']
    [all...]
  /external/mesa3d/src/gallium/winsys/sw/null/
SConscript 7 env = env.Clone()
9 env.Append(CPPPATH = [
14 ws_null = env.ConvenienceLibrary(
16 source = env.ParseSourceList('Makefile.sources', 'C_SOURCES'),
18 env.Alias('ws_null', ws_null)
  /external/libmojo/base/android/
jni_utils.cc 14 ScopedJavaLocalRef<jobject> GetClassLoader(JNIEnv* env) {
15 return Java_JNIUtils_getClassLoader(env);
18 bool isSelectiveJniRegistrationEnabled(JNIEnv* env) {
19 return Java_JNIUtils_isSelectiveJniRegistrationEnabled(env);
  /external/mesa3d/src/egl/
SConscript 7 env = env.Clone()
9 env.Append(CPPPATH = [
18 egl_sources = env.ParseSourceList('Makefile.sources', 'LIBEGL_C_FILES')
20 env.Append(CPPDEFINES = [
27 egl = env.SharedLibrary(
32 egl = env.InstallSharedLibrary(egl, version=(1, 0, 0))
34 env.Alias('egl', egl)
  /frameworks/base/services/core/jni/
onload.cpp 26 int register_android_server_AlarmManagerService(JNIEnv* env);
27 int register_android_server_BatteryStatsService(JNIEnv* env);
28 int register_android_server_ConsumerIrService(JNIEnv *env);
29 int register_android_server_InputApplicationHandle(JNIEnv* env);
30 int register_android_server_InputWindowHandle(JNIEnv* env);
31 int register_android_server_InputManager(JNIEnv* env);
32 int register_android_server_LightsService(JNIEnv* env);
33 int register_android_server_PowerManagerService(JNIEnv* env);
34 int register_android_server_storage_AppFuse(JNIEnv* env);
35 int register_android_server_SerialService(JNIEnv* env);
66 JNIEnv* env = NULL; local
    [all...]
  /external/mesa3d/src/gallium/targets/graw-xlib/
SConscript 6 env = env.Clone()
8 env.Prepend(LIBS = [
14 env.Append(LIBS = env['X11_LIBS'])
15 env.Append(LIBPATH = env['X11_LIBPATH'])
17 env.Append(CPPPATH = [
23 env.Append(CPPDEFINES = ['GALLIUM_RBUG', 'GALLIUM_TRACE'])
31 env.Append(CPPDEFINES = ['GALLIUM_TRACE', 'GALLIUM_RBUG', 'GALLIUM_SOFTPIPE']
    [all...]
  /external/tensorflow/tensorflow/core/platform/
test.cc 34 const char* env = getenv("TEST_TMPDIR");
35 if (env && env[0] != '\0') {
36 return env;
38 env = getenv("TMPDIR");
39 if (env && env[0] != '\0') {
40 return env;
49 const char* env = getenv("TEST_RANDOM_SEED");
51 if (env && sscanf(env, "%d", &result) == 1)
    [all...]
  /external/mesa3d/src/gallium/targets/libgl-xlib/
SConscript 6 env = env.Clone()
8 env.Append(CPPPATH = [
16 env.Append(CPPDEFINES = ['USE_XSHM'])
18 env.Prepend(LIBS = env['X11_LIBS'])
19 env.Prepend(LIBPATH = env['X11_LIBPATH'])
23 if env['gles']:
24 env.Prepend(LIBPATH = [shared_glapi.dir]
    [all...]
  /external/mesa3d/src/gallium/drivers/noop/
SConscript 6 env = env.Clone()
8 noop = env.ConvenienceLibrary(
10 source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
  /external/mesa3d/src/gallium/state_trackers/hgl/
SConscript 6 env = env.Clone()
8 env.Append(CPPPATH = [
20 st_haiku = env.ConvenienceLibrary(
  /external/mesa3d/src/hgl/
SConscript 6 env = env.Clone()
8 env.Append(CPPPATH = [
18 env.Prepend(LIBS = [
30 libgl = env.SharedLibrary(
33 SHLIBSUFFIX = env['SHLIBSUFFIX'],
36 env.Alias('libgl-haiku', libgl)
  /external/mesa3d/src/gallium/targets/graw-null/
SConscript 6 env = env.Clone()
8 graw_util = env.SharedObject(
12 env = env.Clone()
19 env.Prepend(LIBS = [mesautil, gallium])
22 graw = env.SharedLibrary(
27 if env['platform'] == 'windows':
28 graw = env.FindIxes(graw, 'LIBPREFIX', 'LIBSUFFIX')
30 graw = env.FindIxes(graw, 'SHLIBPREFIX', 'SHLIBSUFFIX'
    [all...]
  /libcore/ojluni/src/main/native/
ObjectStreamClass.c 36 static void ObjectStreamClass_initNative(JNIEnv *env)
38 jclass cl = (*env)->FindClass(env, "java/lang/NoSuchMethodError");
42 noSuchMethodErrCl = (*env)->NewGlobalRef(env, cl);
54 ObjectStreamClass_hasStaticInitializer(JNIEnv *env, jclass this,
61 (*env)->GetStaticMethodID(env, clazz, "<clinit>", "()V");
63 jthrowable th = (*env)->ExceptionOccurred(env);
    [all...]
  /external/curl/lib/
getenv.c 38 char env[MAX_PATH]; /* MAX_PATH is from windef.h */
40 env[0] = '\0';
42 ExpandEnvironmentStringsA(temp, env, sizeof(env));
43 return (env[0] != '\0')?strdup(env):NULL;
45 char *env = getenv(variable);
46 return (env && env[0])?strdup(env):NULL
    [all...]
  /external/mesa3d/src/gallium/targets/graw-gdi/
SConscript 6 env = env.Clone()
8 env.Append(CPPPATH = [
12 env.Prepend(LIBS = [
26 env.Append(CPPDEFINES = ['GALLIUM_TRACE', 'GALLIUM_RBUG', 'GALLIUM_SOFTPIPE'])
27 env.Prepend(LIBS = [trace, rbug, softpipe])
29 if env['llvm']:
30 env.Append(CPPDEFINES = 'GALLIUM_LLVMPIPE')
31 env.Prepend(LIBS = [llvmpipe])
33 graw = env.SharedLibrary
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
spirv_target_env.cpp 21 const char* spvTargetEnvDescription(spv_target_env env) {
22 switch (env) {
50 uint32_t spvVersionForTargetEnv(spv_target_env env) {
51 switch (env) {
71 bool spvParseTargetEnv(const char* s, spv_target_env* env) {
76 if (env) *env = SPV_ENV_VULKAN_1_0;
79 if (env) *env = SPV_ENV_UNIVERSAL_1_0;
82 if (env) *env = SPV_ENV_UNIVERSAL_1_1
    [all...]
  /art/test/1914-get-local-instance/
local_instance.cc 37 JNIEnv* env, jobject thiz, jobject run) {
38 ScopedLocalRef<jclass> runnable(env, env->FindClass("java/lang/Runnable"));
39 if (env->ExceptionCheck()) { return; }
40 jmethodID method = env->GetMethodID(runnable.get(), "run", "()V");
41 if (env->ExceptionCheck()) { return; }
42 env->CallVoidMethod(run, method);
43 if (env->ExceptionCheck()) { return; }
44 ScopedLocalRef<jclass> Test1914(env, env->FindClass("art/Test1914"))
    [all...]
  /external/compiler-rt/test/tsan/
longjmp2.cc 10 int foo(sigjmp_buf env) {
11 printf("env=%p\n", env);
12 siglongjmp(env, 42);
16 sigjmp_buf env; local
17 printf("env=%p\n", env);
18 if (sigsetjmp(env, 1) == 42) {
22 foo(env);

Completed in 428 milliseconds

1 2 3 4 5 6 7 8 91011>>