Searched refs:variable (Results 1 - 25 of 57) sorted by relevance

123

/haiku/src/system/kernel/debug/
H A Ddebug_variables.cpp85 dequeue_temporary_variable(TemporaryVariable* variable) argument
88 if (variable->queued) {
89 sTemporaryVariablesLRUQueue.Remove(variable);
90 variable->queued = false;
96 unset_variable(Variable* variable) argument
98 if (is_temporary_variable(variable->name))
99 dequeue_temporary_variable(static_cast<TemporaryVariable*>(variable));
101 variable->Uninit();
111 TemporaryVariable* variable = static_cast<TemporaryVariable*>(_variable);
114 dequeue_temporary_variable(variable);
123 TemporaryVariable* variable = sTemporaryVariablesLRUQueue.RemoveHead(); local
143 TemporaryVariable* variable = sTemporaryVariables + i; local
157 Variable* variable = sVariables + i; local
190 const char* variable = argv[1]; local
227 Variable& variable = sVariables[i]; local
236 Variable& variable = sTemporaryVariables[i]; local
324 Variable& variable = sVariables[i]; local
331 Variable& variable = sTemporaryVariables[i]; local
[all...]
/haiku/src/kits/debugger/model/
H A DStackFrameValues.cpp16 ObjectID* variable; member in struct:StackFrameValues::Key
19 Key(ObjectID* variable, TypeComponentPath* path) argument
21 variable(variable),
28 return variable->HashValue() ^ path->HashValue();
33 return *variable == *other.variable && *path == *other.path;
42 ValueEntry(ObjectID* variable, TypeComponentPath* path) argument
44 Key(variable, path)
46 variable
131 GetValue(ObjectID* variable, const TypeComponentPath* path, BVariant& _value) const argument
145 HasValue(ObjectID* variable, const TypeComponentPath* path) const argument
153 SetValue(ObjectID* variable, TypeComponentPath* path, const BVariant& value) argument
[all...]
H A DStackFrameValueInfos.cpp18 ObjectID* variable; member in struct:StackFrameValueInfos::Key
21 Key(ObjectID* variable, TypeComponentPath* path) argument
23 variable(variable),
30 return variable->HashValue() ^ path->HashValue();
35 return *variable == *other.variable && *path == *other.path;
45 InfoEntry(ObjectID* variable, TypeComponentPath* path) argument
47 Key(variable, path),
51 variable
132 GetInfo(ObjectID* variable, const TypeComponentPath* path, Type** _type, ValueLocation** _location) const argument
156 HasInfo(ObjectID* variable, const TypeComponentPath* path) const argument
164 SetInfo(ObjectID* variable, TypeComponentPath* path, Type* type, ValueLocation* location) argument
[all...]
H A DStackFrame.cpp45 for (int32 i = 0; Variable* variable = fParameters.ItemAt(i); i++)
46 variable->ReleaseReference();
48 for (int32 i = 0; Variable* variable = fLocalVariables.ItemAt(i); i++)
49 variable->ReleaseReference();
176 StackFrame::AddLocalVariable(Variable* variable) argument
178 if (!fLocalVariables.AddItem(variable))
181 variable->AcquireReference();
201 StackFrame::NotifyValueRetrieved(Variable* variable, TypeComponentPath* path) argument
205 listener->StackFrameValueRetrieved(this, variable, path);
220 Variable* variable, TypeComponentPat
219 StackFrameValueRetrieved(StackFrame* stackFrame, Variable* variable, TypeComponentPath* path) argument
[all...]
/haiku/src/libs/compat/freebsd_network/
H A Dcondvar.cpp19 cv_init(struct cv* variable, const char* description) argument
21 __cv_ConditionVariable(variable)->Init(NULL, description);
26 cv_destroy(struct cv* variable) argument
28 __cv_ConditionVariable(variable)->NotifyAll();
35 cv_signal(struct cv* variable) argument
37 __cv_ConditionVariable(variable)->NotifyOne();
42 cv_timedwait(struct cv* variable, struct mtx* mutex, int timeout) argument
44 ConditionVariable* condition = __cv_ConditionVariable(variable);
70 cv_wait(struct cv* variable, struct mtx* mutex) argument
72 cv_timedwait(variable, mute
[all...]
/haiku/headers/private/debugger/model/
H A DStackFrameValueInfos.h27 bool GetInfo(ObjectID* variable,
32 inline bool GetInfo(ObjectID* variable,
37 bool HasInfo(ObjectID* variable,
39 inline bool HasInfo(ObjectID* variable,
41 status_t SetInfo(ObjectID* variable,
63 StackFrameValueInfos::GetInfo(ObjectID* variable, const TypeComponentPath& path, argument
66 return GetInfo(variable, &path, _type, _location);
71 StackFrameValueInfos::HasInfo(ObjectID* variable, const TypeComponentPath& path) argument
74 return HasInfo(variable, &path);
H A DStackFrameValues.h27 bool GetValue(ObjectID* variable,
30 inline bool GetValue(ObjectID* variable,
33 bool HasValue(ObjectID* variable,
35 inline bool HasValue(ObjectID* variable,
37 status_t SetValue(ObjectID* variable,
59 StackFrameValues::GetValue(ObjectID* variable, const TypeComponentPath& path, argument
62 return GetValue(variable, &path, _value);
67 StackFrameValues::HasValue(ObjectID* variable, const TypeComponentPath& path) argument
70 return HasValue(variable, &path);
H A DStackFrame.h77 bool AddLocalVariable(Variable* variable);
86 void NotifyValueRetrieved(Variable* variable,
116 Variable* variable,
/haiku/src/apps/debugger/user_interface/gui/model/
H A DVariablesViewState.cpp109 ObjectID* variable; member in struct:VariablesViewState::Key
112 Key(ObjectID* variable, TypeComponentPath* path) argument
114 variable(variable),
121 return variable->HashValue() ^ path->HashValue();
126 return *variable == *other.variable && *path == *other.path;
137 InfoEntry(ObjectID* variable, TypeComponentPath* path) argument
139 Key(variable, path)
141 variable
242 GetNodeInfo(ObjectID* variable, const TypeComponentPath* path) const argument
250 SetNodeInfo(ObjectID* variable, TypeComponentPath* path, const VariablesViewNodeInfo& info) argument
[all...]
H A DVariablesViewState.h74 const VariablesViewNodeInfo* GetNodeInfo(ObjectID* variable,
76 inline const VariablesViewNodeInfo* GetNodeInfo(ObjectID* variable,
79 status_t SetNodeInfo(ObjectID* variable,
102 VariablesViewState::GetNodeInfo(ObjectID* variable, argument
105 return GetNodeInfo(variable, &path);
/haiku/src/system/kernel/
H A Dcondition_variable.cpp37 size_t Hash(ConditionVariable* variable) const
38 { return (size_t)variable->fObject; }
39 bool Compare(const void* key, ConditionVariable* variable) const
40 { return key == variable->fObject; }
41 ConditionVariable*& GetLink(ConditionVariable* variable) const
42 { return variable->fNext; }
76 ConditionVariable* variable = sConditionVariableHash.Lookup(object); local
78 if (variable == NULL) {
83 SpinLocker variableLocker(variable->fLock);
86 _AddToLockedVariable(variable);
100 _AddToLockedVariable(ConditionVariable* variable) argument
119 ConditionVariable* variable = atomic_pointer_get(&fVariable); local
173 ConditionVariable* variable = atomic_pointer_get(&fVariable); local
193 THREAD_BLOCK_TYPE_CONDITION_VARIABLE, variable); local
269 ConditionVariable* variable = sConditionVariableHash.Lookup(fObject); local
354 ConditionVariable* variable = sConditionVariableHash.Lookup(object); local
[all...]
/haiku/src/bin/package/
H A Dcommand_info.cpp92 BString variable(start, format - start);
93 if (variable == "fileName") {
95 } else if (variable == "name") {
97 } else if (variable == "version") {
101 "in format string.\n", variable.String());
/haiku/src/libs/linprog/
H A DLinearSpec.cpp64 SpecificationListener::VariableAdded(Variable* variable) argument
70 SpecificationListener::VariableRemoved(Variable* variable) argument
131 * Adds a new variable to the specification.
133 * @return the new variable
138 Variable* variable = new(std::nothrow) Variable(this); local
139 if (!variable)
141 if (!AddVariable(variable)) {
142 delete variable;
146 return variable;
151 LinearSpec::AddVariable(Variable* variable) argument
181 RemoveVariable(Variable* variable, bool deleteVariable) argument
236 UpdateRange(Variable* variable) argument
680 Variable* variable = fVariables.ItemAt(i); local
[all...]
H A DActiveSetSolver.h26 variable order. */
64 bool VariableAdded(Variable* variable);
65 bool VariableRemoved(Variable* variable);
66 bool VariableRangeChanged(Variable* variable);
/haiku/src/kits/debugger/value/value_nodes/
H A DVariableValueNodeChild.cpp13 VariableValueNodeChild::VariableValueNodeChild(Variable* variable) argument
15 fVariable(variable)
/haiku/headers/os/drivers/
H A Dcpuidle.h25 void (*cpuidle_wait)(int32* variable, int32 test);
/haiku/src/servers/launch/
H A DBaseJob.cpp153 BString variable = name; local
154 variable << "=";
160 variable << " ";
161 variable += argument;
164 fEnvironment.Add(variable);
269 BString variable;
270 line.CopyInto(variable, 7, separator - 7);
275 variable << "=" << value;
276 environment.Add(variable);
/haiku/src/tests/add-ons/kernel/kernelland_emu/
H A Dcondition_variable.cpp40 size_t Hash(ConditionVariable* variable) const
41 { return (size_t)variable->fObject; }
42 bool Compare(const void* key, ConditionVariable* variable) const
43 { return key == variable->fObject; }
44 ConditionVariable*& GetLink(ConditionVariable* variable) const
45 { return variable->fNext; }
127 ConditionVariableEntry::_AddToLockedVariable(ConditionVariable* variable) argument
130 fVariable = variable;
229 /*! Called with interrupts disabled and the condition variable spinlock and
/haiku/headers/private/debugger/value/value_nodes/
H A DVariableValueNodeChild.h17 VariableValueNodeChild(Variable* variable);
/haiku/headers/libs/linprog/
H A DLinearSpec.h41 virtual bool VariableAdded(Variable* variable) = 0;
42 virtual bool VariableRemoved(Variable* variable) = 0;
43 virtual bool VariableRangeChanged(Variable* variable) = 0;
75 virtual void VariableAdded(Variable* variable);
76 virtual void VariableRemoved(Variable* variable);
95 bool AddVariable(Variable* variable);
96 bool RemoveVariable(Variable* variable,
98 int32 IndexOf(const Variable* variable) const;
99 int32 GlobalIndexOf(const Variable* variable) const;
100 bool UpdateRange(Variable* variable);
[all...]
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dcache.c263 current->variable = ntfs_malloc(
266 current->variable = (void*)NULL;
283 current->variable = realloc(
284 current->variable,
287 current->variable = ntfs_malloc(
291 free(current->variable);
292 current->variable = (void*)NULL;
303 if (current->variable) {
304 memcpy(current->variable,
305 item->variable, ite
[all...]
/haiku/src/bin/pc/
H A Dpc.c152 typedef struct variable struct
156 struct variable *next;
157 }variable; typedef in typeref:struct:variable
159 variable dummy = { NULL, 0L, NULL };
160 variable *vars=&dummy;
162 variable *lookup_var(char *name);
163 variable *add_var(char *name, ULONG value);
336 variable *v;
385 variable *v;
765 variable *
[all...]
/haiku/src/system/libroot/posix/glibc/arch/sparc/
H A Dadd_n.S40 mov 0,%o4 ! clear carry variable
46 addcc %g1,%o4,%g1 ! add s2 limb and carry variable
H A Dsub_n.S37 mov 0,%o4 ! clear carry variable
43 addcc %g1,%o4,%g1 ! add s2 limb and carry variable
/haiku/src/kits/debugger/debug_managers/
H A DValueNodeManager.cpp74 for (int32 i = 0; Variable* variable = fStackFrame->ParameterAt(i);
76 _AddNode(variable);
79 for (int32 i = 0; Variable* variable
81 _AddNode(variable);
174 ValueNodeManager::_AddNode(Variable* variable) argument
176 // create the node child for the variable
178 variable);

Completed in 1136 milliseconds

123