Searched refs:node_id (Results 1 - 25 of 47) sorted by relevance

12

/external/chromium_org/chromeos/dbus/
H A Dcras_audio_client.h36 // 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)
[all...]
H A Dcras_audio_client_stub_impl.h29 virtual void SetOutputNodeVolume(uint64 node_id, int32 volume) OVERRIDE;
31 virtual void SetInputNodeGain(uint64 node_id, int32 gain) OVERRIDE;
33 virtual void SetActiveOutputNode(uint64 node_id) OVERRIDE;
34 virtual void SetActiveInputNode(uint64 node_id) OVERRIDE;
35 virtual void AddActiveInputNode(uint64 node_id) OVERRIDE;
36 virtual void RemoveActiveInputNode(uint64 node_id) OVERRIDE;
37 virtual void AddActiveOutputNode(uint64 node_id) OVERRIDE;
38 virtual void RemoveActiveOutputNode(uint64 node_id) OVERRIDE;
H A Dcras_audio_client_stub_impl.cc85 void CrasAudioClientStubImpl::SetOutputNodeVolume(uint64 node_id, argument
96 void CrasAudioClientStubImpl::SetInputNodeGain(uint64 node_id, argument
107 void CrasAudioClientStubImpl::SetActiveOutputNode(uint64 node_id) { argument
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) { argument
124 if (active_input_node_id_ == node_id)
130 else if (node_list_[i].id == node_id)
139 AddActiveInputNode(uint64 node_id) argument
146 RemoveActiveInputNode(uint64 node_id) argument
153 AddActiveOutputNode(uint64 node_id) argument
160 RemoveActiveOutputNode(uint64 node_id) argument
[all...]
H A Dcras_audio_client.cc67 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);
135 virtual void AddActiveInputNode(uint64 node_id) OVERRIDE {
139 writer.AppendUint64(node_id);
277 uint64 node_id; local
287 uint64 node_id; local
433 ActiveOutputNodeChanged(uint64 node_id) argument
436 ActiveInputNodeChanged(uint64 node_id) argument
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_priority_forest.h42 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, Priorit
168 AddRootNode( NodeId node_id, Priority priority) argument
180 AddNonRootNode( NodeId node_id, NodeId parent_id, bool unordered) argument
199 RemoveNode(NodeId node_id) argument
277 SetPriority( NodeId node_id, Priority priority) argument
297 SetParent( NodeId node_id, NodeId parent_id, bool unordered) argument
352 MarkReadyToRead(NodeId node_id) argument
357 MarkNoLongerReadyToRead( NodeId node_id) argument
374 MarkReadyToWrite(NodeId node_id) argument
379 MarkNoLongerReadyToWrite( NodeId node_id) argument
390 IsMarked( NodeId node_id, unsigned int flag) const argument
397 Mark( NodeId node_id, unsigned int flag) argument
407 Unmark( NodeId node_id, unsigned int flag) argument
459 NodeId node_id = root_id; local
500 const NodeId node_id = iter->first; local
[all...]
H A Dspdy_priority_tree.h86 bool NodeExists(NodeId node_id) const;
94 bool AddNode(NodeId node_id, NodeId parent_id, int weight, bool exclusive);
98 bool RemoveNode(NodeId node_id);
101 int GetWeight(NodeId node_id) const;
105 NodeId GetParent(NodeId node_id) const;
109 std::list<NodeId>* GetChildren(NodeId node_id) const;
112 bool SetWeight(NodeId node_id, int weight);
119 bool SetParent(NodeId node_id, NodeId parent_id, bool exclusive);
126 bool SetBlocked(NodeId node_id, bool blocked);
131 bool SetReady(NodeId node_id, boo
207 AddNode(NodeId node_id, NodeId parent_id, int weight, bool exclusive) argument
245 RemoveNode(NodeId node_id) argument
311 SetWeight( NodeId node_id, int weight) argument
331 SetParent( NodeId node_id, NodeId parent_id, bool exclusive) argument
380 SetBlocked(NodeId node_id, bool blocked) argument
391 SetReady(NodeId node_id, bool ready) argument
401 PropagateNodeState(NodeId node_id) argument
[all...]
H A Dspdy_priority_forest_test.cc218 const uint32 node_id = forest.NextNodeToRead(); local
219 ASSERT_TRUE(node_id == 1 || node_id == 5 || node_id == 7)
220 << "node_id is " << node_id;
221 ++counts[node_id];
259 const uint32 node_id = forest.NextNodeToWrite(); local
260 ASSERT_TRUE(node_id == 2 || node_id
[all...]
/external/openfst/src/include/fst/extensions/pdt/
H A Dcollection.h41 I node_id; // Root is kNoNodeId; member in struct:fst::Collection::Node
44 Node() : node_id(kNoNodeId), element(T()) {}
45 Node(I i, const T &t) : node_id(i), element(t) {}
48 return n.node_id == node_id && n.element == element;
54 return n.node_id + hash_(n.element) * kPrime;
70 id_ = node_.node_id;
86 I node_id = kNoNodeId; local
88 Node node(node_id, set[i]);
89 node_id
[all...]
/external/chromium_org/chromeos/audio/
H A Dcras_audio_handler.cc38 bool IsInNodeList(uint64 node_id, const CrasAudioHandler::NodeIdList& id_list) { argument
39 return std::find(id_list.begin(), id_list.end(), node_id) != id_list.end();
213 void CrasAudioHandler::AddActiveNode(uint64 node_id, bool notify) { argument
214 const AudioDevice* device = GetDeviceFromId(node_id);
217 << "0x" << std::hex << node_id; local
221 // If there is no primary active device, set |node_id| to primary active node.
228 AddAdditionalActiveNode(node_id, notify);
362 void CrasAudioHandler::SetActiveOutputNode(uint64 node_id, bool notify) { argument
364 SetActiveOutputNode(node_id);
369 void CrasAudioHandler::SetActiveInputNode(uint64 node_id, boo argument
467 ActiveOutputNodeChanged(uint64 node_id) argument
477 << "0x" << std::hex << node_id; local
481 ActiveInputNodeChanged(uint64 node_id) argument
491 << "0x" << std::hex << node_id; local
556 SetupAdditionalActiveAudioNodeState(uint64 node_id) argument
560 << "0x" << std::hex << node_id; local
609 SetOutputNodeVolume(uint64 node_id, int volume) argument
614 SetOutputNodeVolumePercent(uint64 node_id, int volume_percent) argument
644 SetInputNodeGain(uint64 node_id, int gain) argument
649 SetInputNodeGainPercent(uint64 node_id, int gain_percent) argument
850 AddAdditionalActiveNode(uint64 node_id, bool notify) argument
854 << "0x" << std::hex << node_id; local
878 RemoveActiveNodeInternal(uint64 node_id, bool notify) argument
882 << "0x" << std::hex << node_id; local
[all...]
H A Dcras_audio_handler.h123 // Returns node_id of the primary active output node.
126 // Returns the node_id of the primary active input node.
196 virtual void ActiveOutputNodeChanged(uint64 node_id) OVERRIDE;
197 virtual void ActiveInputNodeChanged(uint64 node_id) OVERRIDE;
205 // Sets the active audio output/input node to the node with |node_id|.
207 void SetActiveOutputNode(uint64 node_id, bool notify);
208 void SetActiveInputNode(uint64 node_id, bool notify);
216 void SetupAdditionalActiveAudioNodeState(uint64 node_id);
229 // Sets output volume of |node_id| to |volume|.
230 void SetOutputNodeVolume(uint64 node_id, in
[all...]
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Ddom_tracker.cc21 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));
20 GetFrameIdForNode( int node_id, std::string* frame_id) argument
H A Ddom_tracker.h29 Status GetFrameIdForNode(int node_id, std::string* frame_id);
/external/chromium_org/chrome/browser/sync/
H A Dabstract_profile_sync_service_test.h30 int64 node_id, syncer::ChangeRecord::Action action);
35 int64 node_id,
H A Dabstract_profile_sync_service_test.cc24 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;
23 MakeSingletonChangeRecordList( int64 node_id, syncer::ChangeRecord::Action action) argument
34 MakeSingletonDeletionChangeRecordList( int64 node_id, const sync_pb::EntitySpecifics& specifics) argument
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_expanded_state_tracker.cc49 int64 node_id; local
51 if ((*i)->GetAsString(&value) && base::StringToInt64(value, &node_id) &&
52 (node = GetBookmarkNodeByID(bookmark_model_, node_id)) != NULL &&
/external/chromium_org/tools/grit/grit/tool/
H A Dtransl2tc.py132 node_id = source_node.attrs['name']
133 self.ExtraVerboseOut('Processing node %s\n' % node_id)
134 transl_node = transl_grd.GetNodeById(node_id)
141 node_id)
144 self.Out('Warning: No translation for %s, skipping.\n' % node_id)
153 current_node = current_grd.GetNodeById(node_id)
162 self.VerboseOut('Info: Message %s has changed; skipping\n' % node_id)
190 'Info: Structure of message %s has changed; skipping.\n' % node_id)
/external/chromium_org/tools/telemetry/telemetry/core/heap/
H A Dchrome_js_heap_snapshot_parser.py121 for node_id in self._node_dict:
122 n = self._node_dict[node_id]
159 node_id = self._node_list[ix + self._node_id_ix]
167 n = live_heap_object.LiveHeapObject(node_id, type_string, ctor_name)
172 edge = self._ReadEdgeFromIndex(node_id, edge_ix)
178 self._node_dict[node_id] = n
207 def _ReadEdgeFromIndex(self, node_id, edge_ix):
211 node_id: int, id of the node which is the starting point of the edge.
247 return retaining_edge.RetainingEdge(node_id, child_node_id,
/external/chromium_org/v8/src/
H A Dallocation-tracker.h65 void AddRange(Address addr, int size, unsigned node_id);
74 RangeStack(Address start, unsigned node_id) argument
75 : start(start), trace_node_id(node_id) {}
/external/chromium_org/components/sync_driver/
H A Dmodel_associator.h83 const IDType& node_id,
/external/chromium_org/chrome/test/remoting/
H A Dme2me_browsertest.cc130 std::string node_id = "delete-client-" + host_id; local
131 ClickOnControl(node_id);
/external/chromium_org/content/browser/
H A Dsession_history_browsertest.cc59 void ClickLink(std::string node_id) { argument
60 GURL url("javascript:clickLink('" + node_id + "')");
66 void FillForm(std::string node_id, std::string value) { argument
67 GURL url("javascript:fillForm('" + node_id + "', '" + value + "')");
76 void SubmitForm(std::string node_id) { argument
77 GURL url("javascript:submitForm('" + node_id + "')");
/external/chromium_org/chrome/browser/sync/glue/
H A Dbookmark_model_associator.h76 virtual int64 GetSyncIdFromChromeId(const int64& node_id) OVERRIDE;
86 const int64& node_id,
/external/chromium_org/extensions/shell/browser/
H A Dshell_audio_controller_chromeos.cc19 // Returns a pointer to the device in |devices| with ID |node_id|, or NULL if it
22 uint64 node_id) {
25 if (it->id == node_id)
21 GetDevice(const chromeos::AudioDeviceList& devices, uint64 node_id) argument
/external/chromium_org/chrome/browser/ui/
H A Dchrome_pages.h37 void ShowBookmarkManagerForNode(Browser* browser, int64 node_id);
/external/chromium_org/tools/grit/grit/node/
H A Dmisc.py238 for node_id in node.GetTextualIds():
239 if util.SYSTEM_IDENTIFIERS.match(node_id):
242 if node_id in unique_names and node_id not in duplicate_names:
243 duplicate_names.append(node_id)
244 unique_names[node_id] = 1

Completed in 782 milliseconds

12