Searched refs:operation (Results 1 - 25 of 156) sorted by relevance

1234567

/frameworks/support/compat/src/main/java/androidx/core/app/
H A DAlarmManagerCompat.java43 * @param operation Action to perform when the alarm goes off;
58 @NonNull PendingIntent showIntent, @NonNull PendingIntent operation) {
61 operation);
64 operation);
81 * Under normal system operation, it will not dispatch these
100 * @param operation Action to perform when the alarm goes off;
116 long triggerAtMillis, @NonNull PendingIntent operation) {
118 alarmManager.setAndAllowWhileIdle(type, triggerAtMillis, operation);
120 alarmManager.set(type, triggerAtMillis, operation);
144 * @param operation Actio
57 setAlarmClock(@onNull AlarmManager alarmManager, long triggerTime, @NonNull PendingIntent showIntent, @NonNull PendingIntent operation) argument
115 setAndAllowWhileIdle(@onNull AlarmManager alarmManager, int type, long triggerAtMillis, @NonNull PendingIntent operation) argument
160 setExact(@onNull AlarmManager alarmManager, int type, long triggerAtMillis, @NonNull PendingIntent operation) argument
220 setExactAndAllowWhileIdle(@onNull AlarmManager alarmManager, int type, long triggerAtMillis, @NonNull PendingIntent operation) argument
[all...]
/frameworks/base/services/core/java/com/android/server/location/
H A DGnssStatusListenerHelper.java46 Operation operation;
48 operation = new Operation() {
55 operation = new Operation() {
62 foreach(operation);
66 Operation operation = new Operation() {
72 foreach(operation);
82 Operation operation = new Operation() {
94 foreach(operation);
98 Operation operation = new Operation() {
104 foreach(operation);
[all...]
H A DRemoteListenerHelper.java136 protected void foreach(ListenerOperation<TListener> operation) { argument
138 foreachUnsafe(operation);
173 private void foreachUnsafe(ListenerOperation<TListener> operation) { argument
175 post(linkedListener.getUnderlyingListener(), operation);
179 private void post(TListener listener, ListenerOperation<TListener> operation) { argument
180 if (operation != null) {
181 mHandler.post(new HandlerRunnable(listener, operation));
200 ListenerOperation<TListener> operation = getHandlerOperation(registrationState);
201 foreachUnsafe(operation);
264 public HandlerRunnable(TListener listener, ListenerOperation<TListener> operation) { argument
[all...]
/frameworks/base/cmds/statsd/tests/condition/
H A DCombinationConditionTracker_test.cpp28 LogicalOperation operation = LogicalOperation::AND; local
40 EXPECT_EQ(evaluateCombinationCondition(children, operation, conditionResults),
45 LogicalOperation operation = LogicalOperation::AND; local
57 EXPECT_FALSE(evaluateCombinationCondition(children, operation, conditionResults));
64 EXPECT_TRUE(evaluateCombinationCondition(children, operation, conditionResults));
69 LogicalOperation operation = LogicalOperation::OR; local
81 EXPECT_TRUE(evaluateCombinationCondition(children, operation, conditionResults));
88 EXPECT_FALSE(evaluateCombinationCondition(children, operation, conditionResults));
93 LogicalOperation operation = LogicalOperation::NOT; local
101 EXPECT_FALSE(evaluateCombinationCondition(children, operation, conditionResult
110 LogicalOperation operation = LogicalOperation::NAND; local
135 LogicalOperation operation = LogicalOperation::NOR; local
[all...]
/frameworks/ml/nn/common/operations/
H A DEmbeddingLookup.cpp26 EmbeddingLookup::EmbeddingLookup(const Operation& operation, argument
28 value_ = GetInput(operation, operands, kValueTensor);
29 lookup_ = GetInput(operation, operands, kLookupTensor);
31 output_ = GetOutput(operation, operands, kOutputTensor);
H A DRNN.cpp25 RNN::RNN(const Operation& operation, argument
27 input_ = GetInput(operation, operands, kInputTensor);
28 weights_ = GetInput(operation, operands, kWeightsTensor);
29 recurrent_weights_ = GetInput(operation, operands, kRecurrentWeightsTensor);
30 hidden_state_in_ = GetInput(operation, operands, kHiddenStateInTensor);
31 bias_ = GetInput(operation, operands, kBiasTensor);
34 getScalarData<int32_t>(operands[operation.inputs[kActivationParam]]));
36 hidden_state_out_ = GetOutput(operation, operands, kHiddenStateOutTensor);
37 output_ = GetOutput(operation, operands, kOutputTensor);
40 bool RNN::Prepare(const Operation &operation, argument
[all...]
H A DHashtableLookup.cpp34 HashtableLookup::HashtableLookup(const Operation& operation, argument
36 lookup_ = GetInput(operation, operands, kLookupTensor);
37 key_ = GetInput(operation, operands, kKeyTensor);
38 value_ = GetInput(operation, operands, kValueTensor);
40 output_ = GetOutput(operation, operands, kOutputTensor);
41 hits_ = GetOutput(operation, operands, kHitsTensor);
H A DLSHProjection.cpp26 LSHProjection::LSHProjection(const Operation& operation, argument
28 input_ = GetInput(operation, operands, kInputTensor);
29 weight_ = GetInput(operation, operands, kWeightTensor);
30 hash_ = GetInput(operation, operands, kHashTensor);
33 getScalarData<int32_t>(*GetInput(operation, operands, kTypeParam)));
35 output_ = GetOutput(operation, operands, kOutputTensor);
38 bool LSHProjection::Prepare(const Operation &operation, argument
41 const int num_inputs = NumInputsWithValues(operation, operands);
43 NN_CHECK_EQ(NumOutputs(operation), 1);
45 const RunTimeOperandInfo *hash = GetInput(operation, operand
[all...]
H A DLSTM.cpp39 LSTMCell::LSTMCell(const Operation& operation, argument
41 input_ = GetInput(operation, operands, kInputTensor);
43 input_to_input_weights_ = GetInput(operation, operands, kInputToInputWeightsTensor); // optional
44 input_to_forget_weights_ = GetInput(operation, operands, kInputToForgetWeightsTensor);
45 input_to_cell_weights_ = GetInput(operation, operands, kInputToCellWeightsTensor);
46 input_to_output_weights_ = GetInput(operation, operands, kInputToOutputWeightsTensor);
49 GetInput(operation, operands, kRecurrentToInputWeightsTensor); // optional
50 recurrent_to_forget_weights_ = GetInput(operation, operands, kRecurrentToForgetWeightsTensor);
51 recurrent_to_cell_weights_ = GetInput(operation, operands, kRecurrentToCellWeightsTensor);
52 recurrent_to_output_weights_ = GetInput(operation, operand
81 CheckInputTensorDimensions( const Operation &operation, std::vector<RunTimeOperandInfo> &operands, uint32_t n_input, uint32_t n_output, uint32_t n_cell) argument
230 Prepare(const Operation &operation, std::vector<RunTimeOperandInfo> &operands, Shape *scratchShape, Shape *outputStateShape, Shape *cellStateShape, Shape *outputShape) argument
[all...]
H A DSVDF.cpp39 SVDF::SVDF(const Operation& operation, argument
41 input_ = GetInput(operation, operands, kInputTensor);
42 weights_feature_ = GetInput(operation, operands, kWeightsFeatureTensor);
43 weights_time_ = GetInput(operation, operands, kWeightsTimeTensor);
44 bias_ = GetInput(operation, operands, kBiasTensor);
45 state_in_ = GetInput(operation, operands, kStateInTensor);
47 params_.rank_ = getScalarData<int>(*GetInput(operation, operands, kRankParam));
49 *GetInput(operation, operands, kActivationParam)));
51 state_out_ = GetOutput(operation, operands, kStateOutTensor);
52 output_ = GetOutput(operation, operand
55 Prepare(const Operation &operation, std::vector<RunTimeOperandInfo> &operands, Shape *stateShape, Shape *outputShape) argument
[all...]
H A DLSHProjection.h47 const android::hardware::neuralnetworks::V1_1::Operation &operation,
51 const android::hardware::neuralnetworks::V1_1::Operation &operation,
H A DRNN.h40 RNN(const android::hardware::neuralnetworks::V1_1::Operation &operation,
43 static bool Prepare(const android::hardware::neuralnetworks::V1_1::Operation &operation,
/frameworks/ml/nn/common/
H A DGraphDump.cpp44 // Operation nodes are named "n" (operatioN) followed by operation index.
102 const Operation& operation = model.operations[i]; local
104 const uint32_t maxArity = std::max(operation.inputs.size(), operation.outputs.size());
106 if (maxArity == operation.inputs.size()) {
113 << toString(operation.type) << "\"]" << std::endl;
115 // operation inputs
116 for (unsigned in = 0, inE = operation.inputs.size(); in < inE; in++) {
117 outStream << " d" << operation.inputs[in] << " -> n" << i;
126 // operation output
[all...]
/frameworks/base/cmds/statsd/src/condition/
H A Dcondition_util.h38 const LogicalOperation& operation,
/frameworks/base/core/java/android/app/
H A DIAlarmManager.aidl33 long interval, int flags, in PendingIntent operation, in IAlarmListener listener,
37 void remove(in PendingIntent operation, in IAlarmListener listener);
H A DAlarmManager.java332 * @param operation Action to perform when the alarm goes off;
349 public void set(@AlarmType int type, long triggerAtMillis, PendingIntent operation) { argument
350 setImpl(type, triggerAtMillis, legacyExactLength(), 0, 0, operation, null, null,
420 * @param operation Action to perform when the alarm goes off;
438 long intervalMillis, PendingIntent operation) {
439 setImpl(type, triggerAtMillis, legacyExactLength(), intervalMillis, 0, operation,
471 * @param operation Action to perform when the alarm goes off;
488 PendingIntent operation) {
489 setImpl(type, windowStartMillis, windowLengthMillis, 0, 0, operation,
525 * @param operation Actio
437 setRepeating(@larmType int type, long triggerAtMillis, long intervalMillis, PendingIntent operation) argument
487 setWindow(@larmType int type, long windowStartMillis, long windowLengthMillis, PendingIntent operation) argument
541 setExact(@larmType int type, long triggerAtMillis, PendingIntent operation) argument
608 setAlarmClock(AlarmClockInfo info, PendingIntent operation) argument
616 set(@larmType int type, long triggerAtMillis, long windowMillis, long intervalMillis, PendingIntent operation, WorkSource workSource) argument
658 setImpl(@larmType int type, long triggerAtMillis, long windowMillis, long intervalMillis, int flags, PendingIntent operation, final OnAlarmListener listener, String listenerTag, Handler targetHandler, WorkSource workSource, AlarmClockInfo alarmClock) argument
792 setInexactRepeating(@larmType int type, long triggerAtMillis, long intervalMillis, PendingIntent operation) argument
842 setAndAllowWhileIdle(@larmType int type, long triggerAtMillis, PendingIntent operation) argument
896 setExactAndAllowWhileIdle(@larmType int type, long triggerAtMillis, PendingIntent operation) argument
912 cancel(PendingIntent operation) argument
[all...]
/frameworks/base/location/java/android/location/
H A DGnssMeasurementCallbackTransport.java53 ListenerOperation<GnssMeasurementsEvent.Callback> operation =
61 foreach(operation);
66 ListenerOperation<GnssMeasurementsEvent.Callback> operation =
74 foreach(operation);
H A DGnssNavigationMessageCallbackTransport.java55 ListenerOperation<GnssNavigationMessage.Callback> operation =
63 foreach(operation);
68 ListenerOperation<GnssNavigationMessage.Callback> operation =
76 foreach(operation);
H A DBatchedLocationCallbackTransport.java55 ListenerOperation<BatchedLocationCallback> operation =
63 foreach(operation);
/frameworks/av/media/libaudioclient/aidl/android/media/
H A DIPlayer.aidl33 in Operation operation);
/frameworks/base/core/proto/android/providers/settings/
H A Dcommon.proto43 // When the operation happened
46 // Type of the operation
47 optional string operation = 2;
/frameworks/base/obex/javax/obex/
H A DServerRequestHandler.java54 * an OBEX operation and a Connection ID was specified, no Connection ID will be
215 * @param operation contains the headers sent by the client and allows new
223 public int onPut(Operation operation) { argument
236 * @param operation contains the headers sent by the client and allows new
244 public int onGet(Operation operation) { argument
/frameworks/ml/nn/common/include/
H A DCpuExecutor.h120 // Runs one operation of the graph.
190 inline int NumInputsWithValues(const Operation &operation, argument
192 const std::vector<uint32_t> &inputs = operation.inputs;
199 inline int NumOutputs(const Operation &operation) { argument
200 return operation.outputs.size();
211 inline RunTimeOperandInfo *GetInput(const Operation &operation, argument
214 return &operands[operation.inputs[index]];
217 inline RunTimeOperandInfo *GetOutput(const Operation &operation, argument
220 return &operands[operation.outputs[index]];
/frameworks/base/cmds/statsd/src/matchers/
H A Dmatcher_util.h41 bool combinationMatch(const std::vector<int>& children, const LogicalOperation& operation,
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java57 * perform a database operation and are then returned to the pool. At any
548 * @param cancellationSignal A signal to cancel the operation in progress, or null if none.
552 * @throws OperationCanceledException if the operation was canceled.
589 * @param cancellationSignal A signal to cancel the operation in progress, or null if none.
595 * @throws OperationCanceledException if the operation was canceled.
632 * @param cancellationSignal A signal to cancel the operation in progress, or null if none.
638 * @throws OperationCanceledException if the operation was canceled.
676 * @param cancellationSignal A signal to cancel the operation in progress, or null if none.
683 * @throws OperationCanceledException if the operation was canceled.
724 * @param cancellationSignal A signal to cancel the operation i
[all...]

Completed in 487 milliseconds

1234567