HomeSort by relevance Sort by last modified time
    Searched refs:device_handle (Results 1 - 17 of 17) sorted by null

  /external/e2fsprogs/ext2ed/
disk.c 48 if (device_handle==NULL) { /* Check that a device is indeed open */
60 if ( (fseek (device_handle,offset,SEEK_SET))==-1) { /* Seek to the required offset */
66 if ( (fread (buffer,1,length,device_handle))==-1) { /* And do the actual reading */
99 if (device_handle==NULL) {
116 if ( (fseek (device_handle,offset,SEEK_SET))==-1) {
122 if ( (fwrite (buffer,1,length,device_handle))==-1) {
198 if (device_handle==NULL) {
221 if (device_handle==NULL) {
general_com.c 171 if (device_handle!=NULL)
172 fclose (device_handle);
174 if ( (device_handle=fopen (new_device,"rb"))==NULL) {
188 fclose (device_handle);
189 device_handle=NULL; /* Notice that our device is still not set up */
208 if (device_handle==NULL) {
262 if ( (fseek (device_handle,new_offset,SEEK_SET))==-1) {
366 if (device_handle==NULL) {
621 if (device_handle==NULL)
777 if (device_handle==NULL)
    [all...]
init.c 40 if (device_handle!=NULL)
41 fclose (device_handle);
60 device_handle=NULL; /* Notice that our device is still not set up */
ext2ed.h 200 extern FILE *device_handle;
main.c 71 FILE *device_handle=NULL; /* This is passed to the fopen / fread ... commands */ variable
  /external/chromium_org/device/hid/
hid_service_win.cc 149 base::win::ScopedHandle device_handle(
158 if (!device_handle.IsValid() &&
160 base::win::ScopedHandle device_handle(
169 if (!device_handle.IsValid())
176 if (!HidD_GetAttributes(device_handle.Get(), &attrib))
183 HidD_SetNumInputBuffers(device_handle.Get(), i);
188 if (HidD_GetPreparsedData(device_handle.Get(), &preparsed_data) &&
  /external/chromium_org/chrome/browser/media_galleries/linux/
mtp_read_file_worker.h 26 explicit MTPReadFileWorker(const std::string& device_handle);
mtp_device_task_helper.h 103 // |device_handle| contains the handle to communicate with the MTP device.
105 // If OpenStorage request fails, |error| is set to true and |device_handle| is
108 const std::string& device_handle,
mtp_read_file_worker.cc 39 MTPReadFileWorker::MTPReadFileWorker(const std::string& device_handle)
40 : device_handle_(device_handle),
mtp_device_task_helper.cc 148 const std::string& device_handle,
151 device_handle_ = device_handle;
  /external/chromium_org/extensions/browser/api/usb/
usb_api.cc 594 scoped_refptr<UsbDeviceHandle> device_handle = devices->at(i)->Open(); local
595 if (device_handle)
596 device_handles_.push_back(device_handle);
600 UsbDeviceHandle* const device_handle = device_handles_[i].get(); local
602 new UsbDeviceResource(extension_->id(), device_handle);
742 scoped_refptr<UsbDeviceHandle> device_handle = local
744 if (!device_handle)
748 device_handle->GetDevice()->ListInterfaces();
868 scoped_refptr<UsbDeviceHandle> device_handle = local
870 if (!device_handle)
891 scoped_refptr<UsbDeviceHandle> device_handle = local
916 scoped_refptr<UsbDeviceHandle> device_handle = local
942 scoped_refptr<UsbDeviceHandle> device_handle = local
968 scoped_refptr<UsbDeviceHandle> device_handle = local
1025 scoped_refptr<UsbDeviceHandle> device_handle = local
1074 scoped_refptr<UsbDeviceHandle> device_handle = local
1123 scoped_refptr<UsbDeviceHandle> device_handle = local
1190 scoped_refptr<UsbDeviceHandle> device_handle = local
    [all...]
  /external/chromium_org/components/usb_service/
usb_device_impl.cc 102 scoped_refptr<UsbDeviceHandleImpl> device_handle =
104 handles_.push_back(device_handle);
105 return device_handle;
usb_device_handle_impl.cc 117 UsbDeviceHandleImpl* const device_handle = local
119 CHECK(device_handle) << "Device handle is closed before transfer finishes.";
120 device_handle->TransferComplete(transfer);
  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
removable_storage_provider_win.cc 61 base::win::ScopedHandle device_handle(CreateFile(
72 if (!device_handle) {
80 device_handle, // Device handle.
106 device_handle, // Device handle.
  /external/chromium_org/chrome/utility/image_writer/
image_writer_win.cc 17 base::win::ScopedHandle device_handle(
25 if (device_handle == INVALID_HANDLE_VALUE) {
37 device_handle, // Device handle.
  /external/chromium_org/content/browser/gamepad/
raw_input_data_fetcher_win.cc 144 HANDLE device_handle = device_list[i].hDevice; local
145 RawGamepadInfo* gamepad_info = ParseGamepadInfo(device_handle);
147 controllers_[device_handle] = gamepad_info;
  /external/libmtp/src/
libusb-glue.c 1581 usb_dev_handle *device_handle; local
    [all...]

Completed in 1775 milliseconds