summaryrefslogtreecommitdiffstats
path: root/chromeos/binder/constants.h
blob: 0357a0512c0de1f8207008d3645289308e7e056a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROMEOS_BINDER_CONSTANTS_H_
#define CHROMEOS_BINDER_CONSTANTS_H_

#define BINDER_PACK_CHARS(c1, c2, c3, c4) \
  (((c1) << 24) | ((c2) << 16) | ((c3) << 8) | (c4))

namespace binder {

// Context manager's handle is always 0.
const uint32_t kContextManagerHandle = 0;

// Transaction code constants.
const uint32_t kFirstTransactionCode = 0x00000001;
const uint32_t kLastTransactionCode = 0x00ffffff;
const uint32_t kPingTransactionCode = BINDER_PACK_CHARS('_', 'P', 'N', 'G');

// Note: must be kept in sync with PENALTY_GATHER in Android's StrictMode.java.
const int32_t kStrictModePenaltyGather = (0x40 << 16);

}  // namespace binder

#endif  // CHROMEOS_BINDER_CONSTANTS_H_