HomeSort by relevance Sort by last modified time
    Searched defs:image_path (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/chrome/browser/chromeos/login/
user_image_manager_browsertest.cc 93 const base::FilePath& image_path) {
100 "path" , new base::StringValue(image_path.value()));
108 const base::FilePath& image_path) {
118 EXPECT_EQ(image_path.value(), actual_image_path);
131 // Verifies that old user image info matches |image_index| and |image_path|
135 const base::FilePath& image_path) {
137 username, image_index, image_path);
142 // Verifies that new user image info matches |image_index| and |image_path|
146 const base::FilePath& image_path) {
148 username, image_index, image_path);
156 base::FilePath image_path = GetUserImagePath(username, "png"); local
    [all...]
user_image_manager_impl.cc 141 void DeleteImageFile(const std::string& image_path) {
142 if (image_path.empty())
144 base::FilePath fp(image_path);
227 std::string image_path; local
228 image_properties->GetString(kImagePathNodeName, &image_path);
233 DCHECK(!image_path.empty() || image_index == User::kProfileImageIndex);
240 if (!image_path.empty()) {
254 image_path, 0 /* no resize */,
304 std::string image_path; local
305 image_properties->GetString(kImagePathNodeName, &image_path);
393 std::string image_path; local
780 std::string image_path; local
    [all...]
  /external/oprofile/libutil++/
op_spu_bfd.cpp 63 string const image_path = local
66 cverb << vbfd << "op_bfd ctor for " << image_path << endl;
70 fd = open(image_path.c_str(), O_RDONLY);
72 cverb << vbfd << "open failed for " << image_path << endl;
78 cverb << vbfd << "stat failed for " << image_path << endl;
84 ibfd.abfd = spu_open_bfd(image_path, fd, spu_offset);
87 cverb << vbfd << "fdopen_bfd failed for " << image_path << endl;
bfd_support.cpp 56 string const image_path = extra.find_image_path(name, img_ok, true); local
61 name = image_path;
63 ifstream file(image_path.c_str());
op_bfd.cpp 119 string const image_path = local
122 cverb << vbfd << "op_bfd ctor for " << image_path << endl;
126 cverb << vbfd << "can't locate " << image_path << endl;
130 fd = open(image_path.c_str(), O_RDONLY);
132 cverb << vbfd << "open failed for " << image_path << endl;
138 cverb << vbfd << "stat failed for " << image_path << endl;
145 ibfd.abfd = fdopen_bfd(image_path, fd);
148 cverb << vbfd << "fdopen_bfd failed for " << image_path << endl;
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
theme_handler.cc 203 base::FilePath image_path = extension->path().Append( local
205 if (!base::PathExists(image_path)) {
208 image_path.LossyDisplayName());
  /external/oprofile/pp/
common_option.cpp 34 vector<string> image_path; member in namespace:options
48 popt::option(options::image_path, "image-path", 'p',
  /external/chromium/chrome/common/extensions/
extension_file_util.cc 164 FilePath image_path = extension->path().AppendASCII(val); local
165 if (!file_util::PathExists(image_path)) {
168 image_path.LossyDisplayName());
  /external/qemu/memcheck/
memcheck_proc_management.h 49 char* image_path; member in struct:ProcDesc
65 /* ProcDesc->image_path has been replaced during process execution. */
  /external/chromium/chrome/browser/chromeos/login/
user_manager.cc 57 const std::string& image_path) {
61 images_update->SetWithoutPathExpansion(username, new StringValue(image_path));
69 const FilePath& image_path,
78 if (file_util::WriteFile(image_path,
89 username, image_path.value()));
93 void DeleteUserImage(const FilePath& image_path) {
95 if (!file_util::Delete(image_path, false)) {
261 std::string image_path; local
264 prefs_images->GetStringWithoutPathExpansion(email, &image_path)) {
266 if (IsDefaultImagePath(image_path, &default_image_id))
429 FilePath image_path = GetImagePathForUser(username); local
466 std::string image_path; local
    [all...]
  /external/chromium_org/chrome/browser/profiles/
profile_info_cache.cc 118 const base::FilePath& image_path,
125 base::FilePath dir = image_path.DirName();
131 if (file_util::WriteFile(image_path,
144 void ReadBitmap(const base::FilePath& image_path,
150 if (!file_util::ReadFileToString(image_path, &image_data)) {
167 void DeleteBitmap(const base::FilePath& image_path) {
169 base::DeleteFile(image_path, false);
370 base::FilePath image_path = path.AppendASCII(file_name); local
373 base::Bind(&ReadBitmap, image_path, image),
590 base::FilePath image_path = path.AppendASCII(old_file_name) local
605 base::FilePath image_path = path.AppendASCII(new_file_name); local
    [all...]

Completed in 962 milliseconds