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

1 2

  /libnativehelper/include/nativehelper/
ScopedUtfChars.h 28 // ScopedUtfChars name(env, java_name);
32 class ScopedUtfChars {
34 ScopedUtfChars(JNIEnv* env, jstring s) : env_(env), string_(s) {
43 ~ScopedUtfChars() {
67 ScopedUtfChars(const ScopedUtfChars&);
68 void operator=(const ScopedUtfChars&);
  /frameworks/base/core/jni/
android_os_SELinux.cpp 27 #include <ScopedUtfChars.h>
132 UniquePtr<ScopedUtfChars> context;
135 context.reset(new ScopedUtfChars(env, contextStr));
163 ScopedUtfChars path(env, pathStr);
168 ScopedUtfChars context(env, contextStr);
196 ScopedUtfChars path(env, pathStr);
315 ScopedUtfChars name(env, nameStr);
340 ScopedUtfChars name(env, nameStr);
369 ScopedUtfChars subjectContext(env, subjectContextStr);
374 ScopedUtfChars objectContext(env, objectContextStr)
    [all...]
android_os_UEventObserver.cpp 30 #include <ScopedUtfChars.h>
88 ScopedUtfChars match(env, matchStr);
95 ScopedUtfChars match(env, matchStr);
android_net_wifi_WifiNative.cpp 20 #include <ScopedUtfChars.h>
37 ScopedUtfChars command(env, javaCommand);
39 return false; // ScopedUtfChars already threw on error.
com_android_internal_content_NativeLibraryHelper.cpp 24 #include <ScopedUtfChars.h>
169 ScopedUtfChars nativeLibPath(env, *javaNativeLibPath);
272 ScopedUtfChars filePath(env, javaFilePath);
273 ScopedUtfChars cpuAbi(env, javaCpuAbi);
274 ScopedUtfChars cpuAbi2(env, javaCpuAbi2);
android_media_RemoteDisplay.cpp 39 #include <ScopedUtfChars.h>
138 ScopedUtfChars iface(env, ifaceStr);
android_net_TrafficStats.cpp 27 #include <ScopedUtfChars.h>
161 ScopedUtfChars iface8(env, iface);
android_os_Trace.cpp 21 #include <ScopedUtfChars.h>
49 ScopedUtfChars name(env, nameStr);
android_emoji_EmojiFactory.cpp 6 #include <ScopedUtfChars.h>
125 ScopedUtfChars nameUtf(env, name);
android_view_VelocityTracker.cpp 27 #include <ScopedUtfChars.h>
144 ScopedUtfChars strategy(env, strategyStr);
com_android_internal_net_NetworkStatsFactory.cpp 26 #include <ScopedUtfChars.h>
65 ScopedUtfChars path8(env, path);
  /libcore/luni/src/main/native/
java_lang_System.cpp 21 #include "ScopedUtfChars.h"
38 ScopedUtfChars message(env, javaMessage);
64 ScopedUtfChars name(env, javaName);
68 ScopedUtfChars signature(env, javaSignature);
102 ScopedUtfChars name(env, javaName);
java_io_File.cpp 24 #include "ScopedUtfChars.h"
43 ScopedUtfChars path(env, javaPath);
57 ScopedUtfChars path(env, javaPath);
72 ScopedUtfChars path(env, javaPath);
139 ScopedUtfChars path(env, javaPath);
IcuUtilities.cpp 24 #include "ScopedUtfChars.h"
32 return Locale::createFromName(ScopedUtfChars(env, localeName).c_str());
libcore_icu_NativePluralRules.cpp 23 #include "ScopedUtfChars.h"
39 std::string localeName(ScopedUtfChars(env, javaLocaleName).c_str());
libcore_net_RawSocket.cpp 26 #include "ScopedUtfChars.h"
62 ScopedUtfChars ifname(env, interfaceName);
111 ScopedUtfChars ifname(env, interfaceName);
libcore_io_Posix.cpp 30 #include "ScopedUtfChars.h"
302 ScopedUtfChars interfaceName(env, javaInterfaceName);
330 ScopedUtfChars path(env, javaPath);
410 ScopedUtfChars path(env, javaPath);
433 ScopedUtfChars path(env, javaPath);
441 ScopedUtfChars path(env, javaPath);
489 ScopedUtfChars path(env, javaFilename);
502 ScopedUtfChars path(env, javaFilename);
602 ScopedUtfChars node(env, javaNode);
681 ScopedUtfChars name(env, javaName)
    [all...]
  /art/runtime/native/
java_lang_Runtime.cc 26 #include "ScopedUtfChars.h"
45 ScopedUtfChars filename(env, javaFilename);
51 ScopedUtfChars ldLibraryPath(env, javaLdLibraryPath);
java_lang_VMClassLoader.cc 22 #include "ScopedUtfChars.h"
30 ScopedUtfChars name(env, javaName);
64 ScopedUtfChars name(env, javaName);
dalvik_system_DexFile.cc 35 #include "ScopedUtfChars.h"
51 // TODO: rewrite to get rid of this, or change ScopedUtfChars to offer this option.
88 ScopedUtfChars sourceName(env, javaSourceName);
157 ScopedUtfChars class_name(env, javaName);
199 ScopedUtfChars filename(env, javaFilename);
dalvik_system_VMDebug.cc 29 #include "ScopedUtfChars.h"
83 ScopedUtfChars traceFilename(env, javaTraceFilename);
92 ScopedUtfChars traceFilename(env, javaTraceFilename);
185 ScopedUtfChars chars(env, javaFilename);
dalvik_system_Zygote.cc 37 #include "ScopedUtfChars.h"
480 UniquePtr<ScopedUtfChars> se_info;
482 se_info.reset(new ScopedUtfChars(env, java_se_info));
487 UniquePtr<ScopedUtfChars> se_name;
489 se_name.reset(new ScopedUtfChars(env, java_se_name));
java_lang_Class.cc 28 #include "ScopedUtfChars.h"
47 ScopedUtfChars name(env, javaName);
  /packages/apps/Nfc/nci/jni/
NativeLlcpSocket.cpp 20 #include <ScopedUtfChars.h>
69 ScopedUtfChars serviceName(e, sn);
  /frameworks/base/services/jni/
com_android_server_power_PowerManagerService.cpp 24 #include <ScopedUtfChars.h>
161 ScopedUtfChars name(env, nameStr);
166 ScopedUtfChars name(env, nameStr);

Completed in 279 milliseconds

1 2