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

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pkgutil.py 46 res1 = pkgutil.get_data(pkg, 'res.txt')
48 res2 = pkgutil.get_data(pkg, 'sub/res.txt')
73 res1 = pkgutil.get_data(pkg, 'res.txt')
75 res2 = pkgutil.get_data(pkg, 'sub/res.txt')
106 def get_data(self, path): member in class:PkgutilPEP302Tests.MyTestLoader
121 self.assertEqual(pkgutil.get_data('foo', 'dummy'), "Hello, world!")
125 # Ensure that get_data works without reloading - the "loads" module
130 self.assertEqual(pkgutil.get_data('foo', 'dummy'), "Hello, world!")
test_zipimport.py 294 self.assertEqual(data, zi.get_data(name))
304 if __loader__.get_data("some.data") != "some data":
446 self.assertRaises(TypeError, z.get_data, None)
454 self.assertRaises(IOError, z.get_data, 'abc')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pkgutil.py 46 res1 = pkgutil.get_data(pkg, 'res.txt')
48 res2 = pkgutil.get_data(pkg, 'sub/res.txt')
73 res1 = pkgutil.get_data(pkg, 'res.txt')
75 res2 = pkgutil.get_data(pkg, 'sub/res.txt')
106 def get_data(self, path): member in class:PkgutilPEP302Tests.MyTestLoader
121 self.assertEqual(pkgutil.get_data('foo', 'dummy'), "Hello, world!")
125 # Ensure that get_data works without reloading - the "loads" module
130 self.assertEqual(pkgutil.get_data('foo', 'dummy'), "Hello, world!")
test_zipimport.py 294 self.assertEqual(data, zi.get_data(name))
304 if __loader__.get_data("some.data") != "some data":
446 self.assertRaises(TypeError, z.get_data, None)
454 self.assertRaises(IOError, z.get_data, 'abc')
  /external/chromium_org/third_party/boringssl/src/ssl/test/
async_bio.cc 30 async_bio *get_data(BIO *bio) { function in namespace:__anon16310
38 async_bio *a = get_data(bio);
70 async_bio *a = get_data(bio);
159 get_data(ret)->datagram = true;
164 async_bio *a = get_data(bio);
172 async_bio *a = get_data(bio);
  /external/oprofile/libutil++/
child_reader.h 24 * in one : get_data(). In all case get_data() must be called once to flush the
29 * - check the getline()/get_data()/block_read() interface.
33 * through get_data(). get_data() is blocking until the child close stderr /
61 bool get_data(std::ostream & out, std::ostream & err);
child_reader.cpp 205 bool child_reader::get_data(ostream & out, ostream & err) function in class:child_reader
  /system/media/camera/src/
camera_metadata.c 168 static uint8_t *get_data(const camera_metadata_t *metadata) { function
295 memcpy(get_data(metadata), get_data(src),
423 (camera_metadata_data_t*) (get_data(metadata) +
467 memcpy(get_data(dst) + dst->data_count, get_data(src),
546 memcpy(get_data(dst) + entry->data.offset, data,
609 entry->data.u8 = get_data(src) + buffer_entry->data.offset;
675 uint8_t *start = get_data(dst) + entry->data.offset;
730 uint8_t *start = get_data(dst) + entry->data.offset
    [all...]
  /external/blktrace/btt/
btt_plot.py 89 def get_data(files): function
382 generate_output(t, get_data(files))
389 generate_output(t, get_data([file]))
393 generate_output(type, get_data(files))
  /hardware/broadcom/wlan/bcmdhd/wifi_hal/
cpp_bindings.h 46 return get_data(NL80211_ATTR_VENDOR_DATA);
83 void *get_data(int attribute) { function in class:WifiEvent
123 void* get_data() { function in class:nl_iterator
gscan.cpp 215 memcpy(channels, it.get_data(), sizeof(int) * num_channels_to_copy);
246 nlattr *sc_data = (nlattr *) it.get_data();
252 strncpy(result->ssid, (char *) it2.get_data(), it2.get_len());
255 memcpy(result->bssid, (byte *) it2.get_data(), sizeof(mac_addr));
888 memcpy(mResults + mRetrieved, it2.get_data(),
891 wifi_scan_result *results = (wifi_scan_result *)it2.get_data();
    [all...]
  /external/libpng/contrib/pngminus/
pnm2png.c 55 png_uint_32 get_data (FILE *pnm_file, int depth);
382 *pix_ptr++ = get_data (pnm_file, 8);
391 *pix_ptr++ = get_data (pnm_file, bit_depth);
408 *pix_ptr++ = get_data (alpha_file, alpha_depth);
535 * get_data() - takes first byte and converts into next pixel value,
540 png_uint_32 get_data (FILE *pnm_file, int depth) function
  /hardware/qcom/wlan/qcwcn/wifi_hal/
cpp_bindings.h 63 return get_data(NL80211_ATTR_VENDOR_DATA);
100 void *get_data(int attribute) { function in class:WifiEvent
140 void* get_data() { function in class:nl_iterator
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pkgutil.py 14 'walk_packages', 'iter_modules', 'get_data',
254 def get_data(self, pathname): member in class:ImpLoader
556 def get_data(package, resource): function
559 This is a wrapper round the PEP 302 loader get_data API. The package
575 which does not support get_data(), then None is returned.
579 if loader is None or not hasattr(loader, 'get_data'):
585 # Modify the resource name to be compatible with the loader.get_data
591 return loader.get_data(resource_name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pkgutil.py 14 'walk_packages', 'iter_modules', 'get_data',
254 def get_data(self, pathname): member in class:ImpLoader
556 def get_data(package, resource): function
559 This is a wrapper round the PEP 302 loader get_data API. The package
575 which does not support get_data(), then None is returned.
579 if loader is None or not hasattr(loader, 'get_data'):
585 # Modify the resource name to be compatible with the loader.get_data
591 return loader.get_data(resource_name)
  /external/chromium_org/third_party/cython/src/Cython/
Utils.py 160 loader.get_data(arcname)
326 data = loader.get_data(arcname)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
files.py 74 data = zi.get_data(parts[1])
  /external/oprofile/gui/
oprof_start_util.cpp 263 reader.get_data(cout, err);
  /external/chromium_org/tools/symsrc/
pefile.py 556 data = self.pe.get_data(self.rva_ptr, 2)
815 def get_data(self, start, length=None): member in class:SectionStructure
2970 def get_data(self, rva, length=None): member in class:PE
    [all...]
  /device/asus/deb/kernel-headers/media/
msm_cam_sensor.h 350 struct eeprom_get_t get_data; member in union:msm_eeprom_cfg_data::__anon2575
  /device/asus/deb/original-kernel-headers/media/
msm_cam_sensor.h 317 struct eeprom_get_t get_data; member in union:msm_eeprom_cfg_data::__anon2585
  /device/asus/flo/kernel-headers/media/
msm_cam_sensor.h 350 struct eeprom_get_t get_data; member in union:msm_eeprom_cfg_data::__anon2963
  /device/asus/flo/original-kernel-headers/media/
msm_cam_sensor.h 317 struct eeprom_get_t get_data; member in union:msm_eeprom_cfg_data::__anon2973
  /device/lge/hammerhead/kernel-headers/media/
msm_cam_sensor.h 404 struct eeprom_get_t get_data; member in union:msm_eeprom_cfg_data::__anon3469
  /device/lge/hammerhead/original-kernel-headers/media/
msm_cam_sensor.h 366 struct eeprom_get_t get_data; member in union:msm_eeprom_cfg_data::__anon3481

Completed in 531 milliseconds

1 2