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

  /system/vold/fs/
Ext4.cpp 71 const char* c_source = source.c_str(); local
92 ret = mount(c_source, c_target, "ext4", tmpmnt_flags, tmpmnt_opts);
113 kFsckPath, c_source);
115 ALOGD("Running %s on %s\n", kFsckPath, c_source);
120 cmd.push_back(c_source);
134 const char* c_source = source.c_str(); local
143 rc = mount(c_source, c_target, "ext4", flags, NULL);
146 SLOGE("%s appears to be a read only filesystem - retrying mount RO", c_source);
148 rc = mount(c_source, c_target, "ext4", flags, NULL);
F2fs.cpp 54 const char* c_source = source.c_str(); local
58 int res = mount(c_source, c_target, "f2fs", flags, NULL);
62 res = mount(c_source, c_target, "f2fs", flags | MS_RDONLY, NULL);
Vfat.cpp 133 const char* c_source = source.c_str(); local
146 rc = mount(c_source, c_target, "vfat", flags, mountData);
149 SLOGE("%s appears to be a read only filesystem - retrying mount RO", c_source);
151 rc = mount(c_source, c_target, "vfat", flags, mountData);
  /external/v8/test/cctest/
test-serialize.cc 207 const char* c_source = "\"1234\".length"; local
208 v8::Local<v8::Script> script = v8_compile(c_source);
232 const char* c_source = "\"1234\".length"; local
233 v8::Local<v8::Script> script = v8_compile(c_source);
    [all...]
test-api.cc 430 const char* c_source = "1 + 2 * 3"; local
431 uint16_t* two_byte_source = AsciiToTwoByteString(c_source);
461 const char* c_source = "1 + 2 * 3"; local
466 new TestOneByteResource(i::StrDup(c_source), &dispose_count);
526 const char* c_source = "1 + 2 * 3"; local
530 Local<String> source = v8_str(c_source);
535 new TestOneByteResource(i::StrDup(c_source), &dispose_count));
793 const char* c_source = "1 + 2 * 3"; local
798 TestOneByteResourceWithDisposeControl res_stack(i::StrDup(c_source), false);
821 new TestOneByteResourceWithDisposeControl(i::StrDup(c_source), true)
    [all...]

Completed in 78 milliseconds