예제 #1
0
파일: values.py 프로젝트: pzins/babeltrace
 def _value(self):
     status, value = native_bt.value_string_get(self._ptr)
     assert (status == native_bt.VALUE_STATUS_OK)
     return value
예제 #2
0
 def _value(self):
     status, value = native_bt.value_string_get(self._ptr)
     assert(status == native_bt.VALUE_STATUS_OK)
     return value
예제 #3
0
 def _value(self):
     return native_bt.value_string_get(self._ptr)
예제 #4
0
 def value(self):
     status, value = native_bt.value_string_get(self._ptr)
     self._handle_status(status)
     return value