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

1 2

  /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.h 29 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;
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.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);
135 virtual void AddActiveInputNode(uint64 node_id) OVERRIDE {
139 writer.AppendUint64(node_id);
277 uint64 node_id; local
287 uint64 node_id; local
    [all...]
  /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...]
spdy_priority_tree.h 86 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, bool ready)
    [all...]
spdy_priority_forest_test.cc 218 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 == 4 || node_id == 6
    [all...]
  /external/openfst/src/include/fst/extensions/pdt/
collection.h 41 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 = node_table_.FindId(node, insert)
    [all...]
  /external/chromium_org/chromeos/audio/
cras_audio_handler.cc 38 bool IsInNodeList(uint64 node_id, const CrasAudioHandler::NodeIdList& id_list) {
39 return std::find(id_list.begin(), id_list.end(), node_id) != id_list.end();
213 void CrasAudioHandler::AddActiveNode(uint64 node_id, bool notify) {
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) {
364 SetActiveOutputNode(node_id);
369 void CrasAudioHandler::SetActiveInputNode(uint64 node_id, bool notify)
477 << "0x" << std::hex << node_id; local
491 << "0x" << std::hex << node_id; local
560 << "0x" << std::hex << node_id; local
854 << "0x" << std::hex << node_id; local
882 << "0x" << std::hex << node_id; local
    [all...]
cras_audio_handler.h 123 // 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, int volume)
    [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));
dom_tracker.h 29 Status GetFrameIdForNode(int node_id, std::string* frame_id);
  /development/ndk/platforms/android-3/include/linux/
cpu.h 22 int node_id; member in struct:cpu
  /external/chromium_org/chrome/browser/sync/
abstract_profile_sync_service_test.h 30 int64 node_id, syncer::ChangeRecord::Action action);
35 int64 node_id,
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;
  /external/chromium_org/components/bookmarks/browser/
bookmark_expanded_state_tracker.cc 49 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/components/sync_driver/
model_associator.h 83 const IDType& node_id,
  /external/chromium_org/tools/grit/grit/tool/
transl2tc.py 132 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/
chrome_js_heap_snapshot_parser.py 121 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/
allocation-tracker.h 65 void AddRange(Address addr, int size, unsigned node_id);
74 RangeStack(Address start, unsigned node_id)
75 : start(start), trace_node_id(node_id) {}
  /external/chromium_org/chrome/browser/sync/glue/
bookmark_model_associator.h 76 virtual int64 GetSyncIdFromChromeId(const int64& node_id) OVERRIDE;
86 const int64& node_id,
  /external/chromium_org/chrome/test/remoting/
me2me_browsertest.cc 130 std::string node_id = "delete-client-" + host_id; local
131 ClickOnControl(node_id);
  /external/chromium_org/content/browser/
session_history_browsertest.cc 59 void ClickLink(std::string node_id) {
60 GURL url("javascript:clickLink('" + node_id + "')");
66 void FillForm(std::string node_id, std::string value) {
67 GURL url("javascript:fillForm('" + node_id + "', '" + value + "')");
76 void SubmitForm(std::string node_id) {
77 GURL url("javascript:submitForm('" + node_id + "')");
  /external/chromium_org/extensions/shell/browser/
shell_audio_controller_chromeos.cc 19 // 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)
  /external/chromium_org/chrome/browser/ui/
chrome_pages.h 37 void ShowBookmarkManagerForNode(Browser* browser, int64 node_id);

Completed in 893 milliseconds

1 2