OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:current_drive
(Results
1 - 6
of
6
) sorted by null
/external/chromium/testing/gtest/test/
gtest-filepath_test.cc
384
char
current_drive
[_MAX_PATH]; // NOLINT
local
385
current_drive
[0] = static_cast<char>(_getdrive() + 'A' - 1);
386
current_drive
[1] = ':';
387
current_drive
[2] = '\\';
388
current_drive
[3] = '\0';
389
EXPECT_TRUE(FilePath(
current_drive
).DirectoryExists());
/external/chromium_org/testing/gtest/test/
gtest-filepath_test.cc
371
char
current_drive
[_MAX_PATH]; // NOLINT
local
372
current_drive
[0] = static_cast<char>(_getdrive() + 'A' - 1);
373
current_drive
[1] = ':';
374
current_drive
[2] = '\\';
375
current_drive
[3] = '\0';
376
EXPECT_TRUE(FilePath(
current_drive
).DirectoryExists());
/external/gtest/test/
gtest-filepath_test.cc
384
char
current_drive
[_MAX_PATH]; // NOLINT
local
385
current_drive
[0] = static_cast<char>(_getdrive() + 'A' - 1);
386
current_drive
[1] = ':';
387
current_drive
[2] = '\\';
388
current_drive
[3] = '\0';
389
EXPECT_TRUE(FilePath(
current_drive
).DirectoryExists());
/external/protobuf/gtest/test/
gtest-filepath_test.cc
316
char
current_drive
[_MAX_PATH]; // NOLINT
local
317
current_drive
[0] = static_cast<char>(_getdrive() + 'A' - 1);
318
current_drive
[1] = ':';
319
current_drive
[2] = '\\';
320
current_drive
[3] = '\0';
321
EXPECT_TRUE(FilePath(
current_drive
).DirectoryExists());
/ndk/sources/third_party/googletest/googletest/test/
gtest-filepath_test.cc
371
char
current_drive
[_MAX_PATH]; // NOLINT
local
372
current_drive
[0] = static_cast<char>(_getdrive() + 'A' - 1);
373
current_drive
[1] = ':';
374
current_drive
[2] = '\\';
375
current_drive
[3] = '\0';
376
EXPECT_TRUE(FilePath(
current_drive
).DirectoryExists());
/external/grub/stage2/
disk_io.c
92
unsigned long
current_drive
= GRUB_INVALID_DRIVE;
variable
327
return rawread (
current_drive
, part_start + sector, byte_offset,
370
&& is_disk_device (device_map,
current_drive
))
376
return write_to_partition (device_map,
current_drive
, current_partition,
386
if (! rawwrite (
current_drive
, part_start + sector + i,
399
if (
current_drive
== NETWORK_DRIVE)
403
&& ((
current_drive
& 0xFFFFFF7F) < 8
404
||
current_drive
== cdrom_drive)
409
|| (
current_drive
& 0x80)))
510
if (! (
current_drive
& 0x80)
[
all
...]
Completed in 3182 milliseconds