HomeSort by relevance Sort by last modified time
    Searched defs:env (Results 126 - 150 of 1338) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.hard_lk_ct/
hard_link_count.pass.cpp 76 scoped_test_env env; local
77 const path file = env.create_file("file", 42);
80 env.create_hardlink(file, "file_hl");
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_block_file/
is_block_file.pass.cpp 72 scoped_test_env env; local
73 const path dir = env.create_dir("dir");
74 const path file = env.create_file("dir/file", 42);
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_char_file/
is_character_file.pass.cpp 72 scoped_test_env env; local
73 const path dir = env.create_dir("dir");
74 const path file = env.create_file("dir/file", 42);
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_directory/
is_directory.pass.cpp 79 scoped_test_env env; local
80 const path dir = env.create_dir("dir");
81 const path dir2 = env.create_dir("dir/dir2");
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_fifo/
is_fifo.pass.cpp 72 scoped_test_env env; local
73 const path dir = env.create_dir("dir");
74 const path file = env.create_file("dir/file", 42);
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_other/
is_other.pass.cpp 72 scoped_test_env env; local
73 const path dir = env.create_dir("dir");
74 const path file = env.create_file("dir/file", 42);
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_regular_file/
is_regular_file.pass.cpp 75 scoped_test_env env; local
76 const path dir = env.create_dir("dir");
77 const path file = env.create_file("dir/file", 42);
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_socket/
is_socket.pass.cpp 72 scoped_test_env env; local
73 const path dir = env.create_dir("dir");
74 const path file = env.create_file("dir/file", 42);
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_symlink/
is_symlink.pass.cpp 93 scoped_test_env env; local
94 const path dir = env.create_dir("dir");
95 const path file = env.create_file("dir/file", 42);
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.remove/
remove.pass.cpp 57 scoped_test_env env; local
58 const path non_empty_dir = env.create_dir("dir");
59 env.create_file(non_empty_dir / "file1", 42);
60 const path bad_perms_dir = env.create_dir("bad_dir");
61 const path file_in_bad_dir = env.create_file(bad_perms_dir / "file", 42);
78 env.make_env_path("dne")
91 scoped_test_env env; local
92 const path dne = env.make_env_path("dne");
93 const path link = env.create_symlink(dne, "link");
94 const path nested_link = env.make_env_path("nested_link")
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.resize_file/
resize_file.pass.cpp 59 scoped_test_env env; local
60 const path dne = env.make_env_path("dne");
61 const path bad_sym = env.create_symlink(dne, "sym");
62 const path dir = env.create_dir("dir1");
76 scoped_test_env env; local
77 const path file1 = env.create_file("file1", 42);
100 const path sym = env.create_symlink(file1, "sym");
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.temp_dir_path/
temp_directory_path.pass.cpp 48 scoped_test_env env; local
49 const path dne = env.make_env_path("dne");
50 const path file = env.create_file("file", 42);
51 const path dir_perms = env.create_dir("bad_perms_dir");
52 const path nested_dir = env.create_dir("bad_perms_dir/nested");
59 {"TMPDIR", env.create_dir("dir1")},
60 {"TMP", env.create_dir("dir2")},
61 {"TEMP", env.create_dir("dir3")},
62 {"TEMPDIR", env.create_dir("dir4")}
74 // Set the env variable to a path that does not exist and chec
    [all...]
  /external/libmojo/base/android/
java_handler_thread.cc 21 JNIEnv* env = base::android::AttachCurrentThread(); local
24 Java_JavaHandlerThread_create(env, ConvertUTF8ToJavaString(env, name)));
34 JNIEnv* env = base::android::AttachCurrentThread(); local
38 Java_JavaHandlerThread_start(env, java_thread_,
48 JNIEnv* env = base::android::AttachCurrentThread(); local
51 Java_JavaHandlerThread_stop(env, java_thread_,
59 void JavaHandlerThread::InitializeThread(JNIEnv* env,
68 void JavaHandlerThread::StopThread(JNIEnv* env,
84 bool JavaHandlerThread::RegisterBindings(JNIEnv* env) {
    [all...]
jni_android_unittest.cc 17 int LazyMethodIDCall(JNIEnv* env, jclass clazz, int p) {
20 env, clazz,
25 return env->CallStaticIntMethod(clazz, id, p);
28 int MethodIDCall(JNIEnv* env, jclass clazz, jmethodID id, int p) {
29 return env->CallStaticIntMethod(clazz, id, p);
35 JNIEnv* env = AttachCurrentThread(); local
36 ScopedJavaLocalRef<jclass> clazz(GetClass(env, "java/lang/Math"));
40 o += LazyMethodIDCall(env, clazz.obj(), i);
46 o += MethodIDCall(env, clazz.obj(), id, i);
path_utils.cc 19 JNIEnv* env = AttachCurrentThread(); local
20 ScopedJavaLocalRef<jstring> path = Java_PathUtils_getDataDirectory(env);
27 JNIEnv* env = AttachCurrentThread(); local
28 ScopedJavaLocalRef<jstring> path = Java_PathUtils_getDatabaseDirectory(env);
35 JNIEnv* env = AttachCurrentThread(); local
36 ScopedJavaLocalRef<jstring> path = Java_PathUtils_getCacheDirectory(env);
43 JNIEnv* env = AttachCurrentThread(); local
45 Java_PathUtils_getThumbnailCacheDirectory(env);
52 JNIEnv* env = AttachCurrentThread(); local
53 ScopedJavaLocalRef<jstring> path = Java_PathUtils_getDownloadsDirectory(env);
60 JNIEnv* env = AttachCurrentThread(); local
69 JNIEnv* env = AttachCurrentThread(); local
    [all...]
scoped_java_ref_unittest.cc 20 jobject NewGlobalRef(JNIEnv* env, jobject obj) {
22 return g_previous_functions->NewGlobalRef(env, obj);
25 void DeleteGlobalRef(JNIEnv* env, jobject obj) {
27 return g_previous_functions->DeleteGlobalRef(env, obj);
30 jobject NewLocalRef(JNIEnv* env, jobject obj) {
32 return g_previous_functions->NewLocalRef(env, obj);
35 void DeleteLocalRef(JNIEnv* env, jobject obj) {
37 return g_previous_functions->DeleteLocalRef(env, obj);
46 JNIEnv* env = AttachCurrentThread(); variable
47 g_previous_functions = env->functions
59 JNIEnv* env = AttachCurrentThread(); variable
69 JNIEnv* env = AttachCurrentThread(); local
87 JNIEnv* env = AttachCurrentThread(); local
    [all...]
  /external/libvpx/libvpx/vpx_ports/
arm_cpudetect.c 25 char *env; local
26 env = getenv("VPX_SIMD_CAPS");
27 if (env && *env) {
28 *flags = (int)strtol(env, NULL, 0);
36 char *env; local
37 env = getenv("VPX_SIMD_CAPS_MASK");
38 return env && *env ? (int)strtol(env, NULL, 0) : ~0
    [all...]
  /external/ltp/testcases/kernel/mem/hugetlb/hugeshmdt/
hugeshmdt01.c 52 static sigjmp_buf env; variable
109 if (sigsetjmp(env, 1) == 0)
125 siglongjmp(env, 1);
  /external/ltp/testcases/kernel/syscalls/execve/
execve04.c 55 char *env[1] = {NULL}; local
79 TEST(execve(TEST_APP, argv, env));
  /external/ltp/testcases/kernel/syscalls/ipc/shmdt/
shmdt01.c 76 sigjmp_buf env; variable
151 if (sigsetjmp(env, 1) == 0) {
168 siglongjmp(env, 1);
  /external/ltp/testcases/kernel/syscalls/mmap/
mmap03.c 65 static sigjmp_buf env; variable
116 if (sigsetjmp(env, 1) == 0) {
220 siglongjmp(env, 1);
mmap05.c 61 static sigjmp_buf env; variable
105 if (sigsetjmp(env, 1) == 0) {
194 siglongjmp(env, 1);
mmap13.c 53 static sigjmp_buf env; variable
80 if (sigsetjmp(env, 1) == 0) {
132 siglongjmp(env, 1);
  /external/oj-libjdwp/src/share/back/
ClassTypeImpl.c 34 JNIEnv *env; local
37 env = getEnv();
39 clazz = inStream_readClassRef(env, in);
44 WITH_LOCAL_REFS(env, 1) {
48 superclass = JNI_FUNC_PTR(env,GetSuperclass)(env,clazz);
49 (void)outStream_writeObjectRef(env, out, superclass);
51 } END_WITH_LOCAL_REFS(env);
57 readStaticFieldValue(JNIEnv *env, PacketInputStream *in, jclass clazz,
66 value.l = inStream_readObjectRef(env, in)
121 JNIEnv *env; local
    [all...]
ThreadGroupReferenceImpl.c 34 JNIEnv *env; local
37 env = getEnv();
39 group = inStream_readThreadGroupRef(env, in);
44 WITH_LOCAL_REFS(env, 1) {
54 } END_WITH_LOCAL_REFS(env);
62 JNIEnv *env; local
65 env = getEnv();
67 group = inStream_readThreadGroupRef(env, in);
72 WITH_LOCAL_REFS(env, 1) {
78 (void)outStream_writeObjectRef(env, out, info.parent)
90 JNIEnv *env; local
    [all...]

Completed in 734 milliseconds

1 2 3 4 56 7 8 91011>>