MCPcopy Create free account
hub / github.com/OpenDDS/OpenDDS / Java_i2jrt_ORB_object_1to_1string

Function Java_i2jrt_ORB_object_1to_1string

java/idl2jni/runtime/i2jrt_ORB.cpp:56–70  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

54}
55
56jstring JNICALL Java_i2jrt_ORB_object_1to_1string(JNIEnv *jni, jobject jThis,
57 jobject obj)
58{
59 CORBA::Object_ptr tao_obj = recoverTaoObject(jni, obj);
60
61 try {
62 const char *str = recoverTaoORB(jni, jThis)->object_to_string(tao_obj);
63 return jni->NewStringUTF(str);
64
65 } catch (const CORBA::SystemException &se) {
66 throw_java_exception(jni, se);
67 }
68
69 return 0;
70}
71
72jobject JNICALL Java_i2jrt_ORB_string_1to_1object(JNIEnv *jni, jobject jThis,
73 jstring str)

Callers

nothing calls this directly

Calls 4

recoverTaoObjectFunction · 0.85
recoverTaoORBFunction · 0.85
object_to_stringMethod · 0.80
throw_java_exceptionFunction · 0.70

Tested by

no test coverage detected