예제 #1
0
 /**
  * Returns the string value for the specified {@code param_name}. The raw bytes returned are
  * assumed to be UTF-8 encoded and have length equal to {@code param_value_size}.
  *
  * @param object the object to query
  * @param arg an integer argument
  * @param param_name the parameter to query
  * @param param_value_size the explicit string length
  * @return the parameter's string value
  */
 String getStringUTF8(long object, int arg, int param_name, int param_value_size) {
   APIBuffer __buffer = apiBuffer();
   int errcode = get(object, arg, param_name, param_value_size, __buffer.address(), NULL);
   if (DEBUG) checkCLError(errcode);
   return __buffer.stringValueUTF8(0, param_value_size);
 }
예제 #2
0
 /**
  * Returns the string value for the specified {@code param_name}. The raw bytes returned are
  * assumed to be UTF-8 encoded.
  *
  * @param object the object to query
  * @param arg an integer argument
  * @param param_name the parameter to query
  * @return the parameter's string value
  */
 String getStringUTF8(long object, int arg, int param_name) {
   APIBuffer __buffer = apiBuffer();
   int bytes = getString(object, arg, param_name, __buffer);
   return __buffer.stringValueUTF8(0, bytes);
 }