Home | History | Annotate | Download | only in jni

Lines Matching full:hdfptr

33   long hdfptr;  // stores the C HDF* pointer
56 hdfptr = _init();
60 protected JniHdf(long hdfptr, JniHdf parent) {
61 this.hdfptr = hdfptr;
68 protected JniHdf newHdf(long hdfptr, HDF parent) {
69 return new JniHdf(hdfptr, cast(parent));
77 // node needs to dealloc hdfptr.dir
79 if (hdfptr != 0) {
80 _dealloc(hdfptr);
81 hdfptr = 0;
101 if (hdfptr == 0) {
104 return _readFile(hdfptr, filename, fileLoader != null);
108 if (hdfptr == 0) {
145 if (hdfptr == 0) {
148 return _writeFile(hdfptr, filename);
155 if (hdfptr == 0) {
158 return _readString(hdfptr, data);
164 if (hdfptr == 0) {
167 return _writeString(hdfptr);
174 if (hdfptr == 0) {
177 return _getIntValue(hdfptr,hdfname,default_value);
183 if (hdfptr == 0) {
186 return _getValue(hdfptr,hdfname,default_value);
191 if (hdfptr == 0) {
194 _setValue(hdfptr,hdfname,value);
199 if (hdfptr == 0) {
202 _removeTree(hdfptr,hdfname);
207 if (hdfptr == 0) {
210 _setSymLink(hdfptr,hdf_name_src,hdf_name_dest);
215 if (hdfptr == 0) {
264 if (hdfptr == 0) {
282 if (hdfptr == 0) {
285 long obj_ptr = _getObj(hdfptr, hdfpath);
296 if (hdfptr == 0) {
299 long obj_ptr = _getChild(hdfptr, hdfpath);
320 if (hdfptr == 0) {
323 long obj_ptr = _getObj(hdfptr, hdfpath);
326 _setValue(hdfptr, hdfpath, "");
327 obj_ptr = _getObj( hdfptr, hdfpath );
338 if (hdfptr == 0) {
341 return _objName(hdfptr);
347 if (hdfptr == 0) {
350 return _objValue(hdfptr);
358 if (hdfptr == 0) {
361 long child_ptr = _objChild(hdfptr);
373 if (hdfptr == 0) {
376 long next_ptr = _objNext(hdfptr);
385 if (hdfptr == 0 || source.hdfptr == 0) {
388 _copy(hdfptr, hdfpath, source.hdfptr);
396 if (hdfptr == 0) {
399 return _dump(hdfptr);