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

Side by Side Diff: sandbox/linux/bpf_dsl/policy_compiler.cc

Issue 1538283002: Switch to standard integer types in sandbox/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: macros Created 5 years 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
« no previous file with comments | « sandbox/linux/bpf_dsl/policy_compiler.h ('k') | sandbox/linux/bpf_dsl/syscall_set.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 "sandbox/linux/bpf_dsl/policy_compiler.h" 5 #include "sandbox/linux/bpf_dsl/policy_compiler.h"
6 6
7 #include <errno.h> 7 #include <errno.h>
8 #include <stddef.h>
9 #include <stdint.h>
8 #include <sys/syscall.h> 10 #include <sys/syscall.h>
9 11
10 #include <limits> 12 #include <limits>
11 13
12 #include "base/logging.h" 14 #include "base/logging.h"
13 #include "base/macros.h" 15 #include "base/macros.h"
14 #include "sandbox/linux/bpf_dsl/bpf_dsl.h" 16 #include "sandbox/linux/bpf_dsl/bpf_dsl.h"
15 #include "sandbox/linux/bpf_dsl/bpf_dsl_impl.h" 17 #include "sandbox/linux/bpf_dsl/bpf_dsl_impl.h"
16 #include "sandbox/linux/bpf_dsl/codegen.h" 18 #include "sandbox/linux/bpf_dsl/codegen.h"
17 #include "sandbox/linux/bpf_dsl/policy.h" 19 #include "sandbox/linux/bpf_dsl/policy.h"
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 for (size_t i = 0; i < arraysize(kSyscallsRequiredForUnsafeTraps); ++i) { 457 for (size_t i = 0; i < arraysize(kSyscallsRequiredForUnsafeTraps); ++i) {
456 if (sysno == kSyscallsRequiredForUnsafeTraps[i]) { 458 if (sysno == kSyscallsRequiredForUnsafeTraps[i]) {
457 return true; 459 return true;
458 } 460 }
459 } 461 }
460 return false; 462 return false;
461 } 463 }
462 464
463 } // namespace bpf_dsl 465 } // namespace bpf_dsl
464 } // namespace sandbox 466 } // namespace sandbox
OLDNEW
« no previous file with comments | « sandbox/linux/bpf_dsl/policy_compiler.h ('k') | sandbox/linux/bpf_dsl/syscall_set.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698