HomeSort by relevance Sort by last modified time
    Searched defs:WARN_UNUSED_RESULT (Results 26 - 50 of 61) sorted by null

12 3

  /external/libchrome/base/files/
file_path_watcher.h 43 const Callback& callback) WARN_UNUSED_RESULT = 0;
file_path.h 237 FilePath DirName() const WARN_UNUSED_RESULT;
243 FilePath BaseName() const WARN_UNUSED_RESULT;
255 StringType Extension() const WARN_UNUSED_RESULT;
264 StringType FinalExtension() const WARN_UNUSED_RESULT;
269 FilePath RemoveExtension() const WARN_UNUSED_RESULT;
273 FilePath RemoveFinalExtension() const WARN_UNUSED_RESULT;
283 StringPieceType suffix) const WARN_UNUSED_RESULT;
285 StringPiece suffix) const WARN_UNUSED_RESULT;
289 FilePath AddExtension(StringPieceType extension) const WARN_UNUSED_RESULT;
295 FilePath ReplaceExtension(StringPieceType extension) const WARN_UNUSED_RESULT;
    [all...]
file_path_watcher_unittest.cc 195 bool recursive_watch) WARN_UNUSED_RESULT;
197 bool WaitForEvents() WARN_UNUSED_RESULT {
    [all...]
  /external/libchrome/sandbox/linux/seccomp-bpf/
sandbox_bpf.h 66 bool StartSandbox(SeccompLevel level) WARN_UNUSED_RESULT;
  /external/v4l2_codec2/vda/
accelerated_video_decoder.h 29 virtual bool Flush() WARN_UNUSED_RESULT = 0;
53 virtual DecodeResult Decode() WARN_UNUSED_RESULT = 0;
vp9_decoder.h 100 bool Flush() override WARN_UNUSED_RESULT;
102 DecodeResult Decode() override WARN_UNUSED_RESULT;
vp8_decoder.h 71 bool Flush() override WARN_UNUSED_RESULT;
74 DecodeResult Decode() override WARN_UNUSED_RESULT;
  /external/v8/src/base/platform/
condition-variable.h 60 bool WaitFor(Mutex* mutex, const TimeDelta& rel_time) WARN_UNUSED_RESULT;
72 Event* Pre() WARN_UNUSED_RESULT;
semaphore.h 50 bool WaitFor(const TimeDelta& rel_time) WARN_UNUSED_RESULT;
mutex.h 54 bool TryLock() WARN_UNUSED_RESULT;
153 bool TryLock() WARN_UNUSED_RESULT;
  /external/v8/src/crankshaft/
hydrogen-types.h 43 static HType Name() WARN_UNUSED_RESULT { return HType(k##Name); }
48 HType Combine(HType other) const WARN_UNUSED_RESULT {
52 bool Equals(HType other) const WARN_UNUSED_RESULT {
56 bool IsSubtypeOf(HType other) const WARN_UNUSED_RESULT {
61 bool Is##Name() const WARN_UNUSED_RESULT { \
67 static HType FromType(AstType* type) WARN_UNUSED_RESULT;
69 Zone* temp_zone) WARN_UNUSED_RESULT;
70 static HType FromValue(Handle<Object> value) WARN_UNUSED_RESULT;
  /external/webrtc/webrtc/
typedefs.h 70 // int foo() WARN_UNUSED_RESULT;
74 #if !defined(WARN_UNUSED_RESULT)
76 #define WARN_UNUSED_RESULT __attribute__ ((__warn_unused_result__))
78 #define WARN_UNUSED_RESULT
80 #endif // WARN_UNUSED_RESULT
  /system/netd/server/
Network.h 50 virtual int addInterface(const std::string& interface) WARN_UNUSED_RESULT = 0;
51 virtual int removeInterface(const std::string& interface) WARN_UNUSED_RESULT = 0;
52 int clearInterfaces() WARN_UNUSED_RESULT;
RouteController.h 45 static int Init(unsigned localNetId) WARN_UNUSED_RESULT;
47 static int addInterfaceToLocalNetwork(unsigned netId, const char* interface) WARN_UNUSED_RESULT;
49 const char* interface) WARN_UNUSED_RESULT;
52 Permission permission) WARN_UNUSED_RESULT;
54 Permission permission) WARN_UNUSED_RESULT;
57 const UidRanges& uidRanges) WARN_UNUSED_RESULT;
59 const UidRanges& uidRanges) WARN_UNUSED_RESULT;
63 Permission newPermission) WARN_UNUSED_RESULT;
66 const UidRanges& uidRanges) WARN_UNUSED_RESULT;
68 const UidRanges& uidRanges) WARN_UNUSED_RESULT;
    [all...]
NetworkController.h 88 int setDefaultNetwork(unsigned netId) WARN_UNUSED_RESULT;
100 int createPhysicalNetwork(unsigned netId, Permission permission) WARN_UNUSED_RESULT;
101 int createPhysicalOemNetwork(Permission permission, unsigned *netId) WARN_UNUSED_RESULT;
102 int createVirtualNetwork(unsigned netId, bool hasDns, bool secure) WARN_UNUSED_RESULT;
103 int destroyNetwork(unsigned netId) WARN_UNUSED_RESULT;
105 int addInterfaceToNetwork(unsigned netId, const char* interface) WARN_UNUSED_RESULT;
106 int removeInterfaceFromNetwork(unsigned netId, const char* interface) WARN_UNUSED_RESULT;
112 const std::vector<unsigned>& netIds) WARN_UNUSED_RESULT;
114 int addUsersToNetwork(unsigned netId, const UidRanges& uidRanges) WARN_UNUSED_RESULT;
115 int removeUsersFromNetwork(unsigned netId, const UidRanges& uidRanges) WARN_UNUSED_RESULT;
    [all...]
NetdConstants.h 61 #define WARN_UNUSED_RESULT __attribute__((__warn_unused_result__))
  /external/libchrome/base/
compiler_specific.h 129 // int foo() WARN_UNUSED_RESULT;
131 #undef WARN_UNUSED_RESULT
133 #define WARN_UNUSED_RESULT __attribute__((warn_unused_result))
135 #define WARN_UNUSED_RESULT
pickle.h 41 bool ReadBool(bool* result) WARN_UNUSED_RESULT;
42 bool ReadInt(int* result) WARN_UNUSED_RESULT;
43 bool ReadLong(long* result) WARN_UNUSED_RESULT;
44 bool ReadUInt16(uint16_t* result) WARN_UNUSED_RESULT;
45 bool ReadUInt32(uint32_t* result) WARN_UNUSED_RESULT;
46 bool ReadInt64(int64_t* result) WARN_UNUSED_RESULT;
47 bool ReadUInt64(uint64_t* result) WARN_UNUSED_RESULT;
48 bool ReadFloat(float* result) WARN_UNUSED_RESULT;
49 bool ReadDouble(double* result) WARN_UNUSED_RESULT;
50 bool ReadString(std::string* result) WARN_UNUSED_RESULT;
    [all...]
  /external/libchrome/base/mac/
foundation_util.h 382 NSRange* range_out) WARN_UNUSED_RESULT;
  /external/libchrome/base/metrics/
statistics_recorder.h 187 WARN_UNUSED_RESULT;
  /external/v8/src/base/utils/
random-number-generator.h 50 V8_INLINE int NextInt() WARN_UNUSED_RESULT {
60 int NextInt(int max) WARN_UNUSED_RESULT;
67 V8_INLINE bool NextBool() WARN_UNUSED_RESULT {
76 double NextDouble() WARN_UNUSED_RESULT;
83 int64_t NextInt64() WARN_UNUSED_RESULT;
119 int Next(int bits) WARN_UNUSED_RESULT;
  /external/v8/src/
value-serializer.h 56 Maybe<bool> WriteObject(Handle<Object> object) WARN_UNUSED_RESULT;
115 Maybe<bool> WriteJSReceiver(Handle<JSReceiver> receiver) WARN_UNUSED_RESULT;
116 Maybe<bool> WriteJSObject(Handle<JSObject> object) WARN_UNUSED_RESULT;
117 Maybe<bool> WriteJSObjectSlow(Handle<JSObject> object) WARN_UNUSED_RESULT;
118 Maybe<bool> WriteJSArray(Handle<JSArray> array) WARN_UNUSED_RESULT;
120 Maybe<bool> WriteJSValue(Handle<JSValue> value) WARN_UNUSED_RESULT;
122 Maybe<bool> WriteJSMap(Handle<JSMap> map) WARN_UNUSED_RESULT;
123 Maybe<bool> WriteJSSet(Handle<JSSet> map) WARN_UNUSED_RESULT;
125 WARN_UNUSED_RESULT;
127 Maybe<bool> WriteWasmModule(Handle<JSObject> object) WARN_UNUSED_RESULT;
    [all...]
  /external/webrtc/webrtc/base/
common.h 190 // int foo() WARN_UNUSED_RESULT;
194 #if !defined(WARN_UNUSED_RESULT)
196 #define WARN_UNUSED_RESULT __attribute__ ((__warn_unused_result__))
198 #define WARN_UNUSED_RESULT
200 #endif // WARN_UNUSED_RESULT
  /system/extras/perfprofd/quipper/base/
compiler_specific.h 151 // int foo() WARN_UNUSED_RESULT;
154 #define WARN_UNUSED_RESULT __attribute__((warn_unused_result))
156 #define WARN_UNUSED_RESULT
  /external/libmojo/mojo/public/cpp/bindings/
message.h 127 virtual bool Accept(Message* message) WARN_UNUSED_RESULT = 0;
146 WARN_UNUSED_RESULT = 0;
186 WARN_UNUSED_RESULT = 0;

Completed in 2549 milliseconds

12 3