HomeSort by relevance Sort by last modified time
    Searched full:node_id (Results 1 - 25 of 158) sorted by null

1 2 3 4 5 6 7

  /frameworks/av/media/libstagefright/include/
OMX.h 34 virtual bool livesLocally(node_id node, pid_t pid);
39 const char *name, const sp<IOMXObserver> &observer, node_id *node);
41 virtual status_t freeNode(node_id node);
44 node_id node, OMX_COMMANDTYPE cmd, OMX_S32 param);
47 node_id node, OMX_INDEXTYPE index,
51 node_id node, OMX_INDEXTYPE index,
55 node_id node, OMX_INDEXTYPE index,
59 node_id node, OMX_INDEXTYPE index,
63 node_id node, OMX_STATETYPE* state);
66 node_id node, OMX_U32 port_index, OMX_BOOL enable)
    [all...]
  /frameworks/av/media/libstagefright/
OMXClient.cpp 42 virtual bool livesLocally(node_id node, pid_t pid);
48 node_id *node);
50 virtual status_t freeNode(node_id node);
53 node_id node, OMX_COMMANDTYPE cmd, OMX_S32 param);
56 node_id node, OMX_INDEXTYPE index,
60 node_id node, OMX_INDEXTYPE index,
64 node_id node, OMX_INDEXTYPE index,
68 node_id node, OMX_INDEXTYPE index,
72 node_id node, OMX_STATETYPE* state);
75 node_id node, OMX_U32 port_index, OMX_BOOL enable)
    [all...]
  /frameworks/av/include/media/
IOMX.h 42 typedef uint32_t node_id; typedef in class:android::IOMX
44 // Given a node_id and the calling process' pid, returns true iff
47 virtual bool livesLocally(node_id node, pid_t pid) = 0;
57 node_id *node) = 0;
59 virtual status_t freeNode(node_id node) = 0;
62 node_id node, OMX_COMMANDTYPE cmd, OMX_S32 param) = 0;
65 node_id node, OMX_INDEXTYPE index,
69 node_id node, OMX_INDEXTYPE index,
73 node_id node, OMX_INDEXTYPE index,
77 node_id node, OMX_INDEXTYPE index
    [all...]
  /external/chromium_org/mojo/examples/window_manager/
window_manager.mojom 8 CloseWindow(uint32 node_id);
  /external/chromium_org/net/spdy/
spdy_priority_forest.h 42 bool NodeExists(NodeId node_id) const;
45 // on success, or false if the node_id already exists within the forest.
46 bool AddRootNode(NodeId node_id, Priority priority);
51 bool AddNonRootNode(NodeId node_id, NodeId parent_id, bool unordered);
55 bool RemoveNode(NodeId node_id);
59 Priority GetPriority(NodeId node_id) const;
63 NodeId GetParent(NodeId node_id) const;
68 bool IsNodeUnordered(NodeId node_id) const;
72 NodeId GetChild(NodeId node_id) const;
77 bool SetPriority(NodeId node_id, Priority priority)
459 NodeId node_id = root_id; local
500 const NodeId node_id = iter->first; local
    [all...]
  /frameworks/av/media/libstagefright/omx/
OMX.cpp 190 bool OMX::livesLocally(node_id /* node */, pid_t pid) {
223 const char *name, const sp<IOMXObserver> &observer, node_id *node) {
254 status_t OMX::freeNode(node_id node) {
283 node_id node, OMX_COMMANDTYPE cmd, OMX_S32 param) {
288 node_id node, OMX_INDEXTYPE index,
296 node_id node, OMX_INDEXTYPE index,
304 node_id node, OMX_INDEXTYPE index,
311 node_id node, OMX_INDEXTYPE index,
318 node_id node, OMX_STATETYPE* state) {
324 node_id node, OMX_U32 port_index, OMX_BOOL enable)
    [all...]
  /external/chromium_org/chromeos/dbus/
cras_audio_client.h 36 // Called when active audio output node changed to new node with |node_id|.
37 virtual void ActiveOutputNodeChanged(uint64 node_id);
39 // Called when active audio input node changed to new node with |node_id|.
40 virtual void ActiveInputNodeChanged(uint64 node_id);
78 // Sets output volume of the given |node_id| to |volume|, in the rage of
80 virtual void SetOutputNodeVolume(uint64 node_id, int32 volume) = 0;
85 // Sets input gain of the given |node_id| to |gain|, in the range of
87 virtual void SetInputNodeGain(uint64 node_id, int32 gain) = 0;
92 // Sets the active output node to |node_id|.
93 virtual void SetActiveOutputNode(uint64 node_id) = 0
    [all...]
cras_audio_client_stub_impl.cc 85 void CrasAudioClientStubImpl::SetOutputNodeVolume(uint64 node_id,
96 void CrasAudioClientStubImpl::SetInputNodeGain(uint64 node_id,
107 void CrasAudioClientStubImpl::SetActiveOutputNode(uint64 node_id) {
108 if (active_output_node_id_ == node_id)
114 else if (node_list_[i].id == node_id)
117 active_output_node_id_ = node_id;
120 ActiveOutputNodeChanged(node_id));
123 void CrasAudioClientStubImpl::SetActiveInputNode(uint64 node_id) {
124 if (active_input_node_id_ == node_id)
130 else if (node_list_[i].id == node_id)
    [all...]
cras_audio_client_stub_impl.h 28 virtual void SetOutputNodeVolume(uint64 node_id, int32 volume) OVERRIDE;
30 virtual void SetInputNodeGain(uint64 node_id, int32 gain) OVERRIDE;
32 virtual void SetActiveOutputNode(uint64 node_id) OVERRIDE;
33 virtual void SetActiveInputNode(uint64 node_id) OVERRIDE;
cras_audio_client.cc 67 virtual void SetOutputNodeVolume(uint64 node_id, int32 volume) OVERRIDE {
71 writer.AppendUint64(node_id);
90 virtual void SetInputNodeGain(uint64 node_id, int32 input_gain) OVERRIDE {
94 writer.AppendUint64(node_id);
113 virtual void SetActiveOutputNode(uint64 node_id) OVERRIDE {
117 writer.AppendUint64(node_id);
124 virtual void SetActiveInputNode(uint64 node_id) OVERRIDE {
128 writer.AppendUint64(node_id);
235 uint64 node_id; local
236 if (!reader.PopUint64(&node_id)) {
245 uint64 node_id; local
    [all...]
  /external/chromium_org/mojo/services/view_manager/
test_change_tracker.cc 50 NodeIdToString(change.node_id).c_str(),
58 NodeIdToString(change.node_id).c_str(),
66 NodeIdToString(change.node_id).c_str(),
73 NodeIdToString(change.node_id).c_str());
82 NodeIdToString(change.node_id).c_str(),
119 node.node_id = data[i]->node_id;
129 node_id(0),
175 void TestChangeTracker::OnNodeBoundsChanged(Id node_id,
180 change.node_id = node_id
    [all...]
ids.h 25 NodeId(ConnectionSpecificId connection_id, ConnectionSpecificId node_id)
27 node_id(node_id) {}
28 NodeId() : connection_id(0), node_id(0) {}
32 other.node_id == node_id;
40 ConnectionSpecificId node_id; member in struct:mojo::view_manager::service::NodeId
69 return (id.connection_id << 16) | id.node_id;
test_change_tracker.h 39 Id node_id; member in struct:mojo::view_manager::service::TestNode
53 Id node_id; member in struct:mojo::view_manager::service::Change
106 void OnNodeBoundsChanged(Id node_id, RectPtr old_bounds, RectPtr new_bounds);
107 void OnNodeHierarchyChanged(Id node_id,
112 void OnNodeReordered(Id node_id,
116 void OnNodeDeleted(Id node_id, Id server_change_id);
118 void OnNodeViewReplaced(Id node_id, Id new_view_id, Id old_view_id);
view_manager_service_impl.cc 72 const NodeId node_id(node->id());
75 root_node_manager_->ProcessNodeDeleted(node_id);
76 node_map_.erase(NodeIdToTransportId(node_id));
85 NodeMap::const_iterator i = node_map_.find(id.node_id);
122 Id node_id = NodeIdToTransportId(node->id());
123 if (known_nodes_.count(node_id) > 0) {
124 client()->OnNodeBoundsChanged(node_id,
309 bool ViewManagerServiceImpl::CanDeleteNode(const NodeId& node_id) const {
310 return node_id.connection_id == id_;
347 const NodeId& node_id) {
    [all...]
  /frameworks/av/media/libmedia/
IOMX.cpp 66 virtual bool livesLocally(node_id node, pid_t pid) {
99 const char *name, const sp<IOMXObserver> &observer, node_id *node) {
108 *node = (node_id)reply.readInt32();
116 virtual status_t freeNode(node_id node) {
126 node_id node, OMX_COMMANDTYPE cmd, OMX_S32 param) {
138 node_id node, OMX_INDEXTYPE index,
159 node_id node, OMX_INDEXTYPE index,
173 node_id node, OMX_INDEXTYPE index,
194 node_id node, OMX_INDEXTYPE index,
208 node_id node, OMX_STATETYPE* state)
    [all...]
  /external/chromium_org/mojo/services/public/cpp/view_manager/lib/
view_manager_client_impl.h 39 void DestroyNode(Id node_id);
50 void Reorder(Id node_id, Id relative_node_id, OrderDirection direction);
56 void SetActiveView(Id node_id, Id view_id);
57 void SetBounds(Id node_id, const gfx::Rect& bounds);
59 void SetFocus(Id node_id);
61 void Embed(const String& url, Id node_id);
73 void RemoveNode(Id node_id);
103 virtual void OnNodeBoundsChanged(Id node_id,
106 virtual void OnNodeHierarchyChanged(Id node_id,
111 virtual void OnNodeReordered(Id node_id,
    [all...]
view_manager_client_impl.cc 32 Id node_id,
40 private_node.set_id(node_id);
76 nodes[i]->node_id,
204 CreateNodeTransaction(Id node_id, ViewManagerClientImpl* client)
206 node_id_(node_id) {}
228 DestroyNodeTransaction(Id node_id, ViewManagerClientImpl* client)
230 node_id_(node_id) {}
304 ReorderNodeTransaction(Id node_id,
309 node_id_(node_id),
337 SetActiveViewTransaction(Id node_id,
    [all...]
  /frameworks/av/media/libstagefright/omx/tests/
OMXHarness.h 47 IOMX::node_id node, omx_message *msg, int64_t timeoutUs = -1);
50 IOMX::node_id node,
56 IOMX::node_id node, OMX_U32 portIndex,
61 IOMX::node_id node, OMX_U32 portIndex,
64 status_t setRole(IOMX::node_id node, const char *role);
  /external/chromium_org/mojo/services/public/interfaces/view_manager/
view_manager.mojom 13 uint32 node_id;
39 // Additionally the connection id (embedded in |node_id|) must match that of
41 CreateNode(uint32 node_id) => (bool success);
46 DeleteNode(uint32 node_id, uint32 change_id) => (bool success);
49 SetNodeBounds(uint32 node_id, mojo.Rect bounds) => (bool success);
73 RemoveNodeFromParent(uint32 node_id,
80 ReorderNode(uint32 node_id,
85 // Returns the nodes comprising the tree starting at |node_id|. |node_id| is
86 // the first result in the return value, unless |node_id| is invalid, in whic
    [all...]
  /external/chromium_org/chrome/test/chromedriver/chrome/
dom_tracker.cc 21 int node_id, std::string* frame_id) {
22 if (node_to_frame_map_.count(node_id) == 0)
24 *frame_id = node_to_frame_map_[node_id];
87 int node_id; local
88 if (!dict->GetInteger("nodeId", &node_id))
92 node_to_frame_map_.insert(std::make_pair(node_id, frame_id));
  /external/chromium_org/mojo/examples/image_viewer/
image_viewer.cc 31 uint32_t node_id,
60 UpdateView(node_id, bitmap);
65 void UpdateView(view_manager::Id node_id, const SkBitmap& bitmap);
93 void UpdateView(view_manager::Id node_id, const SkBitmap& bitmap) {
126 void NavigatorImpl::UpdateView(view_manager::Id node_id,
128 viewer_->UpdateView(node_id, bitmap);
  /external/chromium_org/chrome/browser/sync/
abstract_profile_sync_service_test.cc 24 int64 node_id, syncer::ChangeRecord::Action action) {
27 record.id = node_id;
35 int64 node_id, const sync_pb::EntitySpecifics& specifics) {
38 record.id = node_id;
abstract_profile_sync_service_test.h 30 int64 node_id, syncer::ChangeRecord::Action action);
35 int64 node_id,
  /external/chromium_org/chromeos/audio/
cras_audio_handler.h 119 // Returns node_id of the active output node.
122 // Returns the node_id of the active input node.
173 virtual void ActiveOutputNodeChanged(uint64 node_id) OVERRIDE;
174 virtual void ActiveInputNodeChanged(uint64 node_id) OVERRIDE;
182 // Sets the active audio output/input node to the node with |node_id|.
183 void SetActiveOutputNode(uint64 node_id);
184 void SetActiveInputNode(uint64 node_id);
201 // Sets output volume of |node_id| to |volume|.
202 void SetOutputNodeVolume(uint64 node_id, int volume);
208 // Sets input gain of |node_id| to |gain|
    [all...]
  /external/chromium_org/mojo/examples/embedded_app/
embedded_app.cc 42 void SetNodeColor(uint32 node_id, SkColor color) {
43 pending_node_colors_[node_id] = color;
44 ProcessPendingNodeColor(node_id);
53 uint32 node_id,
67 app_->SetNodeColor(node_id, color);
121 void ProcessPendingNodeColor(uint32 node_id) {
122 RootMap::iterator root = roots_.find(node_id);
126 PendingNodeColors::iterator color = pending_node_colors_.find(node_id);

Completed in 1079 milliseconds

1 2 3 4 5 6 7