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

  /development/host/windows/usb/api/
adb_helper_routines.cpp 30 ULONG* desired_access,
32 if (NULL != desired_access) {
35 *desired_access = GENERIC_READ | GENERIC_WRITE;
39 *desired_access = GENERIC_READ;
43 *desired_access = GENERIC_WRITE;
47 *desired_access = FILE_READ_ATTRIBUTES | FILE_READ_EA;
adb_helper_routines.h 31 @param[out] desired_access Will receive SDK - complient desired access
40 ULONG* desired_access,
adb_legacy_endpoint_object.cpp 196 ULONG desired_access; local
200 &desired_access, &desired_sharing)) {
206 desired_access,
  /external/chromium/chrome/common/
zip.cc 117 DWORD desired_access, creation_disposition; local
122 desired_access = share_mode = flags_and_attributes = 0;
125 desired_access = GENERIC_READ;
129 desired_access = GENERIC_WRITE | GENERIC_READ;
132 desired_access = GENERIC_WRITE | GENERIC_READ;
137 if ((filename != NULL) && (desired_access != 0)) {
138 file = CreateFile(filename_wstr.c_str(), desired_access, share_mode,

Completed in 47 milliseconds