Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(131)

Side by Side Diff: base/linux_util.cc

Issue 16077010: Fix errors when building android with coverage=1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | net/base/net_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/linux_util.h" 5 #include "base/linux_util.h"
6 6
7 #include <dirent.h> 7 #include <dirent.h>
8 #include <errno.h> 8 #include <errno.h>
9 #include <fcntl.h> 9 #include <fcntl.h>
10 #include <stdlib.h> 10 #include <stdlib.h>
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 DIR* fd = opendir(buf); 224 DIR* fd = opendir(buf);
225 if (!fd) 225 if (!fd)
226 continue; 226 continue;
227 227
228 while ((dent = readdir(fd))) { 228 while ((dent = readdir(fd))) {
229 if (snprintf(buf, sizeof(buf), "/proc/%d/fd/%s", current_pid, 229 if (snprintf(buf, sizeof(buf), "/proc/%d/fd/%s", current_pid,
230 dent->d_name) >= static_cast<int>(sizeof(buf))) { 230 dent->d_name) >= static_cast<int>(sizeof(buf))) {
231 continue; 231 continue;
232 } 232 }
233 233
234 ino_t fd_inode; 234 ino_t fd_inode = (ino_t)-1;
willchan no longer on Chromium 2013/06/04 21:34:36 Please use a static_cast<> here instead.
235 if (ProcPathGetInode(&fd_inode, buf)) { 235 if (ProcPathGetInode(&fd_inode, buf)) {
236 if (fd_inode == socket_inode) { 236 if (fd_inode == socket_inode) {
237 if (already_found) { 237 if (already_found) {
238 closedir(fd); 238 closedir(fd);
239 return false; 239 return false;
240 } 240 }
241 241
242 already_found = true; 242 already_found = true;
243 *pid_out = current_pid; 243 *pid_out = current_pid;
244 break; 244 break;
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 295
296 if (0 == strncmp(expected_data.c_str(), syscall_data.get(), 296 if (0 == strncmp(expected_data.c_str(), syscall_data.get(),
297 expected_data.length())) { 297 expected_data.length())) {
298 return current_tid; 298 return current_tid;
299 } 299 }
300 } 300 }
301 return -1; 301 return -1;
302 } 302 }
303 303
304 } // namespace base 304 } // namespace base
OLDNEW
« no previous file with comments | « no previous file | net/base/net_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698