HomeSort by relevance Sort by last modified time
    Searched refs:reason (Results 26 - 50 of 1482) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/grpc-grpc/src/core/lib/surface/
completion_queue.h 52 void grpc_cq_internal_ref(grpc_completion_queue* cc, const char* reason,
54 void grpc_cq_internal_unref(grpc_completion_queue* cc, const char* reason,
56 #define GRPC_CQ_INTERNAL_REF(cc, reason) \
57 grpc_cq_internal_ref(cc, reason, __FILE__, __LINE__)
58 #define GRPC_CQ_INTERNAL_UNREF(cc, reason) \
59 grpc_cq_internal_unref(cc, reason, __FILE__, __LINE__)
63 #define GRPC_CQ_INTERNAL_REF(cc, reason) grpc_cq_internal_ref(cc)
64 #define GRPC_CQ_INTERNAL_UNREF(cc, reason) grpc_cq_internal_unref(cc)
call.h 62 void grpc_call_internal_ref(grpc_call* call, const char* reason);
63 void grpc_call_internal_unref(grpc_call* call, const char* reason);
64 #define GRPC_CALL_INTERNAL_REF(call, reason) \
65 grpc_call_internal_ref(call, reason)
66 #define GRPC_CALL_INTERNAL_UNREF(call, reason) \
67 grpc_call_internal_unref(call, reason)
71 #define GRPC_CALL_INTERNAL_REF(call, reason) grpc_call_internal_ref(call)
72 #define GRPC_CALL_INTERNAL_UNREF(call, reason) grpc_call_internal_unref(call)
  /external/libchrome/mojo/public/cpp/bindings/
pipe_control_message_proxy.h 30 const base::Optional<DisconnectReason>& reason);
34 const base::Optional<DisconnectReason>& reason);
  /external/strace/tests/
ioctl_kvm_run_auxstr_vcpu.c 9 print_KVM_RUN(const int fd, const char *const dev, const unsigned int reason)
14 switch (reason) {
  /external/strace/tests-m32/
ioctl_kvm_run_auxstr_vcpu.c 9 print_KVM_RUN(const int fd, const char *const dev, const unsigned int reason)
14 switch (reason) {
  /external/strace/tests-mx32/
ioctl_kvm_run_auxstr_vcpu.c 9 print_KVM_RUN(const int fd, const char *const dev, const unsigned int reason)
14 switch (reason) {
  /external/antlr/runtime/Python/unittests/
testbase.py 5 name, reason = self.args
7 (self.__class__.__name__, name, reason))
10 def broken(reason, *exceptions):
20 raise BrokenTest(test_method.__name__, reason)
23 replacement.todo = reason
  /external/antlr/runtime/Python3/unittests/
testbase.py 5 name, reason = self.args
7 self.__class__.__name__, name, reason)
10 def broken(reason, *exceptions):
20 raise BrokenTest(test_method.__name__, reason)
23 replacement.todo = reason
  /external/llvm/include/llvm/Support/
ErrorHandling.h 27 const std::string& reason,
72 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason,
74 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason,
76 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason,
78 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason,
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
ErrorHandling.h 27 const std::string& reason);
76 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason);
77 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason);
78 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason);
79 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
ErrorHandling.h 27 const std::string& reason,
72 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason,
74 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason,
76 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason,
78 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason,
  /external/v8/tools/
trace-maps-processor.py 39 def __init__(self, from_map, to_map, reason):
42 self.reason = reason
63 def AddTransition(from_map, to_map, reason):
72 old_reason = targets[to_map].reason
76 if reason in []:
77 targets[to_map].reason = reason
80 print("// warning: already have a transition from %s to %s, reason: %s" %
81 (from_map, to_map, targets[to_map].reason))
110 reason = "%s: %s" % (event, words[7]) variable
113 reason = "%s: %s" % (event, words[7]) variable
115 reason = "%s_%s" % (reason, words[8]) variable
117 reason = event variable
162 reason = transitions[s][t].reason variable
    [all...]