OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:javaPath
(Results
1 - 3
of
3
) sorted by null
/libcore/luni/src/main/native/
java_io_File.cpp
43
static jstring File_readlink(JNIEnv* env, jclass, jstring
javaPath
) {
44
ScopedUtfChars path(env,
javaPath
);
57
static jstring File_realpath(JNIEnv* env, jclass, jstring
javaPath
) {
58
ScopedUtfChars path(env,
javaPath
);
72
static jboolean File_setLastModifiedImpl(JNIEnv* env, jclass, jstring
javaPath
, jlong ms) {
73
ScopedUtfChars path(env,
javaPath
);
135
static bool readDirectory(JNIEnv* env, jstring
javaPath
, DirEntries& entries) {
136
ScopedUtfChars path(env,
javaPath
);
155
static jobjectArray File_listImpl(JNIEnv* env, jclass, jstring
javaPath
) {
158
if (!readDirectory(env,
javaPath
, entries))
[
all
...]
libcore_io_Posix.cpp
319
static jobject doStat(JNIEnv* env, jstring
javaPath
, bool isLstat) {
320
ScopedUtfChars path(env,
javaPath
);
390
static jboolean Posix_access(JNIEnv* env, jobject, jstring
javaPath
, jint mode) {
391
ScopedUtfChars path(env,
javaPath
);
412
static void Posix_chmod(JNIEnv* env, jobject, jstring
javaPath
, jint mode) {
413
ScopedUtfChars path(env,
javaPath
);
806
static jobject Posix_lstat(JNIEnv* env, jobject, jstring
javaPath
) {
807
return doStat(env,
javaPath
, true);
820
static void Posix_mkdir(JNIEnv* env, jobject, jstring
javaPath
, jint mode) {
821
ScopedUtfChars path(env,
javaPath
);
[
all
...]
/frameworks/base/opengl/tools/glgen/src/
GenerateGLES.java
48
String
javaPath
= stubRoot + ".java";
49
File f = new File(
javaPath
);
52
copy(
javaPath
, glStream);
Completed in 155 milliseconds