Searched defs:operation (Results 51 - 75 of 231) sorted by path

12345678910

/external/chromium_org/content/child/webcrypto/nss/
H A Daes_cbc_nss.cc39 CK_ATTRIBUTE_TYPE operation = (mode == ENCRYPT) ? CKA_ENCRYPT : CKA_DECRYPT; local
48 CKM_AES_CBC_PAD, operation, sym_key, param.get()));
67 if (operation == CKA_DECRYPT &&
/external/chromium_org/content/renderer/pepper/
H A Dpepper_graphics_2d_host.cc429 QueuedOperation operation(QueuedOperation::PAINT);
430 operation.paint_image = image_resource;
434 &operation.paint_src_rect))
441 if (x64 + static_cast<int64>(operation.paint_src_rect.x()) < 0 ||
442 x64 + static_cast<int64>(operation.paint_src_rect.right()) >
445 if (y64 + static_cast<int64>(operation.paint_src_rect.y()) < 0 ||
446 y64 + static_cast<int64>(operation.paint_src_rect.bottom()) >
449 operation.paint_x = top_left.x;
450 operation.paint_y = top_left.y;
452 queued_operations_.push_back(operation);
613 QueuedOperation& operation = queued_operations_[i]; local
[all...]
/external/chromium_org/content/renderer/
H A Drender_view_impl.cc2669 // Make sure selection doesn't affect the search operation in new frame.
2955 WebDragOperation operation = webview()->dragTargetDragEnter( local
2962 Send(new DragHostMsg_UpdateDragCursor(routing_id_, operation));
2969 WebDragOperation operation = webview()->dragTargetDragOver( local
2975 Send(new DragHostMsg_UpdateDragCursor(routing_id_, operation));
/external/chromium_org/content/renderer/service_worker/
H A Dservice_worker_cache_storage_dispatcher.cc143 ServiceWorkerBatchOperation operation; local
144 operation.operation_type =
146 operation.request = FetchRequestFromWebRequest(web_operation.request);
147 operation.response = ResponseFromWebResponse(web_operation.response);
148 operation.match_params =
150 return operation;
/external/chromium_org/media/audio/pulse/
H A Daudio_manager_pulse.cc103 pa_operation* operation = NULL; local
105 operation = pa_context_get_source_info_list(
108 operation = pa_context_get_sink_info_list(
111 WaitForOperationCompletion(input_mainloop_, operation);
214 pa_operation* operation = pa_context_get_server_info( local
216 WaitForOperationCompletion(input_mainloop_, operation);
H A Dpulse_input.cc86 pa_operation* operation = pa_stream_cork(handle_, 0, NULL, NULL); local
87 WaitForOperationCompletion(pa_mainloop_, operation);
101 pa_operation* operation = pa_stream_flush(handle_, local
104 WaitForOperationCompletion(pa_mainloop_, operation);
108 operation = pa_stream_cork(handle_, 1, &pulse::StreamSuccessCallback,
110 WaitForOperationCompletion(pa_mainloop_, operation);
121 pa_operation* operation = pa_stream_flush( local
123 WaitForOperationCompletion(pa_mainloop_, operation);
149 pa_operation* operation = NULL; local
153 operation
179 pa_operation* operation = pa_context_get_source_info_by_index( local
327 pa_operation* operation = local
[all...]
H A Dpulse_output.cc84 pa_operation* operation = pa_stream_flush( local
86 WaitForOperationCompletion(pa_mainloop_, operation);
197 pa_operation* operation = pa_stream_cork( local
199 WaitForOperationCompletion(pa_mainloop_, operation);
216 pa_operation* operation = pa_stream_flush( local
218 WaitForOperationCompletion(pa_mainloop_, operation);
220 operation = pa_stream_cork(pa_stream_, 1, &pulse::StreamSuccessCallback,
222 WaitForOperationCompletion(pa_mainloop_, operation);
H A Dpulse_util.cc100 pa_operation* operation) {
101 if (!operation) {
106 while (pa_operation_get_state(operation) == PA_OPERATION_RUNNING)
109 pa_operation_unref(operation);
99 WaitForOperationCompletion(pa_threaded_mainloop* pa_mainloop, pa_operation* operation) argument
/external/chromium_org/native_client_sdk/src/examples/demo/nacl_io_demo/
H A Dexample.js64 operation: 'write',
322 var operation = data['operation'];
323 if (operation == 'write') {
325 } else if (operation == 'ack') {
328 common.logMessage('Got unexpected pipe operation: ' + operation);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
H A Djspipe_event_emitter.cc25 const char* kDictKeyOperation = "operation";
157 Error JSPipeEventEmitter::SendMessageToJS(PP_Var operation, PP_Var payload) { argument
174 // Set three keys in the dictionary: 'pipe', 'operation', and 'payload'
176 dict_iface_->Set(dict, operation_key_, operation);
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Djspipe_test.cc53 const char* operation, PP_Var payload) {
62 PP_Var operation_var = VarFromCStr(var_iface, operation);
65 PP_Var operation_key = VarFromCStr(var_iface, "operation");
161 // "operation": '<command_name>',
166 const char* operation,
184 PP_Var key2 = VarFromCStr(var_iface, "operation");
187 // Verify pipe name and operation values
194 ASSERT_STREQ(operation, VarToString(var_iface, value2).c_str());
52 CreatePipeMessage(PepperInterface* ppapi, const char* pipe, const char* operation, PP_Var payload) argument
164 VerifyPipeMessage(PP_Var message, const char* pipe_name, const char* operation, const char* payload, int payload_length, int32_t int_payload=0) argument
/external/chromium_org/net/disk_cache/blockfile/
H A Ddisk_format.h64 CacheAddr transaction; // In-flight operation target.
65 int32 operation; // Actual in-flight operation. member in struct:disk_cache::LruData
66 int32 operation_list; // In-flight operation list.
H A Dfile_ios.cc17 // This class represents a single asynchronous IO operation while it is being
21 // Other than the actual parameters for the IO operation (including the
25 // operation.
42 // The actual parameters for the operation are setup in the constructor of
69 // These methods start an asynchronous operation. The arguments have the same
71 // operation never finishes synchronously.
78 // Invokes the users' completion callback at the end of the IO operation.
82 virtual void OnOperationComplete(disk_cache::BackgroundIO* operation,
113 scoped_refptr<FileBackgroundIO> operation(
118 base::Bind(&FileBackgroundIO::Read, operation
135 OnOperationComplete(disk_cache::BackgroundIO* operation, bool cancel) argument
[all...]
H A Din_flight_backend_io.cc337 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
338 operation->Init();
339 PostOperation(operation.get());
344 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
345 operation->OpenEntry(key, entry);
346 PostOperation(operation.get());
351 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
352 operation->CreateEntry(key, entry);
353 PostOperation(operation.get());
358 scoped_refptr<BackendIO> operation(ne
494 OnOperationComplete(BackgroundIO* operation, bool cancel) argument
503 PostOperation(BackendIO* operation) argument
[all...]
H A Din_flight_io.cc66 BackgroundIO* operation = it->get(); local
67 operation->Cancel();
68 DCHECK(io_list_.find(operation) != io_list_.end());
69 io_list_.erase(make_scoped_refptr(operation));
74 void InFlightIO::OnIOComplete(BackgroundIO* operation) { argument
83 FROM_HERE, base::Bind(&BackgroundIO::OnIOSignalled, operation));
84 operation->io_completed()->Signal();
88 void InFlightIO::InvokeCallback(BackgroundIO* operation, bool cancel_task) { argument
92 operation->io_completed()->Wait();
97 operation
108 OnOperationPosted(BackgroundIO* operation) argument
[all...]
H A Dsparse_control.cc80 // This is the callback of the file operation.
145 disk_cache::SparseControl::SparseOperation operation) {
146 switch (operation) {
159 // Logs the end event for |operation| on a child entry. Range operations log
162 disk_cache::SparseControl::SparseOperation operation,
166 switch (operation) {
266 // Copy the operation parameters.
328 // one extra reference due to the pending IO operation itself, but we'll
818 // We fail the whole operation if we encounter an error.
839 // We'll return the current result of the operation, whic
144 GetSparseEventType( disk_cache::SparseControl::SparseOperation operation) argument
161 LogChildOperationEnd(const net::BoundNetLog& net_log, disk_cache::SparseControl::SparseOperation operation, int result) argument
[all...]
H A Dsparse_control_v3.cc80 // This is the callback of the file operation.
147 disk_cache::SparseControl::SparseOperation operation) {
148 switch (operation) {
161 // Logs the end event for |operation| on a child entry. Range operations log
164 disk_cache::SparseControl::SparseOperation operation,
168 switch (operation) {
245 // Copy the operation parameters.
307 // one extra reference due to the pending IO operation itself, but we'll
613 // We fail the whole operation if we encounter an error.
846 // We'll return the current result of the operation, whic
146 GetSparseEventType( disk_cache::SparseControl::SparseOperation operation) argument
163 LogChildOperationEnd(const net::BoundNetLog& net_log, disk_cache::SparseControl::SparseOperation operation, int result) argument
[all...]
/external/chromium_org/net/disk_cache/simple/
H A Dsimple_backend_impl.cc174 // after running an operation asynchronously.
176 const Callback<int(const net::CompletionCallback&)>& operation,
178 const int operation_result = operation.Run(operation_callback);
380 Callback<int(const net::CompletionCallback&)> operation = local
384 operation, callback));
408 Callback<int(const net::CompletionCallback&)> operation = local
412 operation, callback));
427 Callback<int(const net::CompletionCallback&)> operation = local
430 operation, callback));
620 Callback<int(const net::CompletionCallback&)> operation local
175 RunOperationAndCallback( const Callback<int(const net::CompletionCallback&)>& operation, const net::CompletionCallback& operation_callback) argument
649 Callback<int(const net::CompletionCallback&)> operation = local
[all...]
/external/chromium_org/net/http/
H A Dhttp_cache.cc132 // The type of operation represented by a work item.
144 WorkItem(WorkItemOperation operation, Transaction* trans, ActiveEntry** entry) argument
145 : operation_(operation),
149 WorkItem(WorkItemOperation operation, Transaction* trans, argument
151 : operation_(operation),
158 // Calls back the transaction with the result of the operation.
167 // Notifies the caller about the operation completion. Returns true if the
179 WorkItemOperation operation() { return operation_; } function in class:net::HttpCache::WorkItem
370 // If not null, the callback will delete the pending operation later.
504 // This is the only operation tha
[all...]
/external/chromium_org/remoting/host/
H A Dhost_change_notification_listener.cc61 const std::string& operation = local
62 host_changed_element->Attr(QName(kChromotingXmlNamespace, "operation"));
63 if (operation == "delete") {
H A Dhost_change_notification_listener_unittest.cc68 scoped_ptr<XmlElement> GetNotificationStanza(std::string operation, argument
75 host_changed->AddAttr(QName(kChromotingXmlNamespace, "operation"),
76 operation); local
/external/chromium_org/storage/browser/fileapi/
H A Dfile_system_context.cc494 // Disable Flush() for each write operation on SandboxFileSystems since it
498 // should be Flush()ed as soon as a write operation is completed, so that
544 FileSystemOperation* operation = local
549 return operation;
H A Dfile_system_operation_runner.cc47 FileSystemOperation* operation = local
51 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr());
52 if (!operation) {
57 operation->CreateFile(
70 FileSystemOperation* operation = local
73 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr());
74 if (!operation) {
79 operation->CreateDirectory(
93 FileSystemOperation* operation = local
96 OperationHandle handle = BeginOperation(operation, scop
120 FileSystemOperation* operation = local
141 FileSystemOperation* operation = local
161 FileSystemOperation* operation = local
181 FileSystemOperation* operation = local
201 FileSystemOperation* operation = local
222 FileSystemOperation* operation = local
245 FileSystemOperation* operation = local
286 FileSystemOperation* operation = local
310 FileSystemOperation* operation = operations_.Lookup(id); local
325 FileSystemOperation* operation = local
346 FileSystemOperation* operation = local
375 FileSystemOperation* operation = local
397 FileSystemOperation* operation = local
417 FileSystemOperation* operation = local
437 FileSystemOperation* operation = local
460 FileSystemOperation* operation = local
483 FileSystemOperation* operation = local
654 BeginOperation( FileSystemOperation* operation, base::WeakPtr<BeginOperationScoper> scope) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableClipPathOperation.cpp63 const ClipPathOperation* operation = toAnimatableClipPathOperation(value)->m_operation.get(); local
64 return m_operation == operation || (m_operation && operation && *m_operation == *operation);
H A DAnimatableClipPathOperation.h42 static PassRefPtrWillBeRawPtr<AnimatableClipPathOperation> create(ClipPathOperation* operation) argument
44 return adoptRefWillBeNoop(new AnimatableClipPathOperation(operation));
55 AnimatableClipPathOperation(ClipPathOperation* operation) argument
56 : m_operation(operation)

Completed in 565 milliseconds

12345678910