HomeSort by relevance Sort by last modified time
    Searched defs:reject (Results 1 - 25 of 108) sorted by null

1 2 3 4 5

  /frameworks/native/services/surfaceflinger/
LayerRejecter.cpp 42 bool LayerRejecter::reject(const sp<GraphicBuffer>& buf, const BufferItem& item) { function in class:android::LayerRejecter
92 "[%s] latchBuffer/reject: buffer (%ux%u, tr=%02x), scalingMode=%d\n"
104 // reject this buffer
  /external/v8/src/builtins/
builtins-promise.cc 37 // ES#sec-promise-reject-functions
38 // Promise Reject Functions
70 Handle<JSFunction> resolve, reject; local
73 &resolve, &reject);
77 result->set(1, *reject);
  /external/iptables/extensions/
libip6t_REJECT.c 1 /* Shared library add-on to ip6tables to add customized REJECT support.
46 {"icmp6-reject-route", "reject-route",
47 IP6T_ICMP6_REJECT_ROUTE, "ICMPv6 reject route"}
55 printf("Valid reject types:\n");
67 "REJECT target options:\n"
68 "--reject-with type drop input packet and send back\n"
75 {.name = "reject-with", .id = O_REJECT_WITH, .type = XTTYPE_STRING},
81 struct ip6t_reject_info *reject = (struct ip6t_reject_info *)t->data; local
84 reject->with = IP6T_ICMP6_PORT_UNREACH
90 struct ip6t_reject_info *reject = cb->data; local
109 const struct ip6t_reject_info *reject local
121 const struct ip6t_reject_info *reject local
145 const struct ip6t_reject_info *reject = local
    [all...]
libipt_REJECT.c 1 /* Shared library add-on to iptables to add customized REJECT support.
14 * reject. -- Maciej Soltysiak <solt@dns.toxicfilms.tv>
64 printf("Valid reject types:\n");
76 "REJECT target options:\n"
77 "--reject-with type drop input packet and send back\n"
86 {.name = "reject-with", .id = O_REJECT_WITH, .type = XTTYPE_STRING},
92 struct ipt_reject_info *reject = (struct ipt_reject_info *)t->data; local
95 reject->with = IPT_ICMP_PORT_UNREACHABLE;
101 struct ipt_reject_info *reject = cb->data; local
110 reject->with = reject_table[i].with
125 const struct ipt_reject_info *reject local
137 const struct ipt_reject_info *reject = local
165 const struct ipt_reject_info *reject = local
    [all...]
  /external/v8/src/runtime/
runtime-promise.cc 40 // If the Promise.reject call is caught, then this will return
150 // instead can just call resolve/reject directly).
151 Handle<JSFunction> resolve, reject; local
153 isolate, promise, isolate->factory()->false_value(), &resolve, &reject);
170 resolution, then, resolve, reject, debug_id, debug_name,
  /packages/apps/Dialer/java/com/android/incallui/
NotificationBroadcastReceiver.java 157 call.reject(false /* rejectWithMessage */, null);
AnswerScreenPresenter.java 74 call.reject(true /* rejectWithMessage */, message);
115 call.reject(false /* rejectWithMessage */, null);
  /frameworks/base/telephony/java/android/telephony/ims/stub/
ImsCallSessionImplBase.java 187 * @param reason reason code to reject an incoming call, defined in
192 public void reject(int reason) throws RemoteException { method in class:ImsCallSessionImplBase
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
SerializingExecutorTest.java 148 final AtomicBoolean reject = new AtomicBoolean(true); local
152 if (reject.get()) {
169 reject.set(false);
  /external/v8/src/js/
promise.js 67 // Calling the reject function would be a new exception, so debugEvent = true
90 // There are 3 possible states for the resolve, reject symbols when we add
134 if (IS_UNDEFINED(deferred.reject)) {
140 %_Call(deferred.reject, UNDEFINED, exception);
167 name = status === kFulfilled ? "Promise.resolve" : "Promise.reject";
257 // Revoke previously triggered reject event.
306 reject: callbacks[kRejectCallback]
310 var result = {promise: UNDEFINED, resolve: UNDEFINED, reject: UNDEFINED }; property in class:result
311 result.promise = new C((resolve, reject) => {
312 if (!IS_UNDEFINED(result.resolve) || !IS_UNDEFINED(result.reject))
    [all...]
  /frameworks/compile/mclinker/lib/LD/
EhFrameReader.cpp 110 {Q1, Reject, Accept, Reject}, // Q0
111 {Q1, Q1, Accept, Reject}, // Q1
116 {addCIE, reject, addTerm, reject}, // Q0
117 {addCIE, addFDE, addTerm, reject}, // Q1
134 while (Reject != cur_state && Accept != cur_state) {
151 cur_state = Reject;
157 if (Reject == cur_state) {
360 bool EhFrameReader::reject(EhFrame& pEhFrame function in class:mcld::EhFrameReader
    [all...]
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
TestConnectionManager.java 200 mRemote.reject();
  /external/wpa_supplicant_8/src/p2p/
p2p_pd.c 560 enum p2p_status_code reject = P2P_SC_FAIL_INCOMPATIBLE_PARAMS; local
632 "PD request for unknown P2P Group ID - reject");
645 reject = P2P_SC_FAIL_INVALID_PARAMS;
672 * TODO: since we don't support multiple PD, reject PD request
707 reject = P2P_SC_SUCCESS;
724 reject = P2P_SC_FAIL_INCOMPATIBLE_PARAMS;
731 reject = P2P_SC_FAIL_INCOMPATIBLE_PARAMS;
756 reject = P2P_SC_FAIL_INCOMPATIBLE_PARAMS;
764 reject = P2P_SC_FAIL_INCOMPATIBLE_PARAMS;
767 reject = P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
TelecomServiceImpl.java     [all...]
ConnectionServiceWrapper.java 1117 void reject(Call call, boolean rejectWithMessage, String message) { method in class:ConnectionServiceWrapper
    [all...]
  /system/bt/stack/avrc/
avrc_api.cc 370 /* reject - commands can only be in single packets at AVRCP level */
372 /* use the current GKI buffer to send the reject */
403 /* the pdu id does not match - reject the command using the current
429 /* use the current GKI buffer to build/send the reject message */
629 bool reject = false; local
745 reject = true;
762 reject = true;
803 reject = true;
836 /* reject unsupported opcode */
837 reject = true
    [all...]
  /cts/tests/tests/telecom/src/android/telecom/cts/
ExtendedInCallServiceTest.java 391 call.reject(false, null);
413 call.reject(true, disconnectReason);
MockConnection.java 72 mRemoteConnection.reject();
82 mRemoteConnection.reject();
  /external/mksh/src/
syn.c 72 static bool reject; /* token(cf) gets symbol again */ variable
76 #define REJECT (reject = true)
77 #define ACCEPT (reject = false)
78 #define token(cf) ((reject) ? (ACCEPT, symbol) : (symbol = yylex(cf)))
79 #define tpeek(cf) ((reject) ? (symbol) : (REJECT, symbol = yylex(cf)))
115 REJECT;
133 REJECT;
172 REJECT;
    [all...]
  /packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/embedded/
TelecomUiCallManager.java 115 telecomCall.reject(rejectWithMessage, textMessage);
  /frameworks/base/telecomm/java/android/telecom/
RemoteConnection.java 938 public void reject() { method in class:RemoteConnection
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
SupplicantP2pIfaceHal.java 849 public boolean reject(String peerAddress) { method in class:SupplicantP2pIfaceHal
    [all...]
  /prebuilts/tools/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/
jdeferred-core-1.2.2.jar 
  /prebuilts/tools/common/m2/repository/org/jdeferred/jdeferred-core/1.2.3/
jdeferred-core-1.2.3.jar 
  /external/dhcpcd-6.8.2/
if-options.c 197 {"reject", required_argument, NULL, O_REJECT},
521 uint8_t *request[], uint8_t *require[], uint8_t *no[], uint8_t *reject[])
538 *reject = ifo->rejectmask6;
557 *reject = ifo->rejectmask;
645 uint8_t *request, *require, *no, *reject; local
789 &request, &require, &no, &reject);
792 make_option_mask(d, dl, od, odl, reject, arg, -1) != 0)
800 &request, &require, &no, &reject);
801 if (make_option_mask(d, dl, od, odl, reject, arg, 1) != 0 ||
1022 &request, &require, &no, &reject);
    [all...]

Completed in 2419 milliseconds

1 2 3 4 5