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

123

/haiku/3rdparty/mmu_man/onlinedemo/
H A Dhaiku.php106 // name of session variable holding the qemu slot; not yet used correctly
/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/headers/os/drivers/
H A Dcpuidle.h25 void (*cpuidle_wait)(int32* variable, int32 test);
/haiku/headers/private/debugger/debug_managers/
H A DValueNodeManager.h44 void _AddNode(Variable* variable);
/haiku/headers/private/debugger/model/
H A DStackFrame.h77 bool AddLocalVariable(Variable* variable);
86 void NotifyValueRetrieved(Variable* variable,
116 Variable* variable,
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);
/haiku/headers/private/debugger/value/value_nodes/
H A DVariableValueNodeChild.h17 VariableValueNodeChild(Variable* variable);
/haiku/headers/private/kernel/
H A Dlisteners.h76 ConditionVariable* variable) = 0;
H A Dscheduling_analysis.h71 InitConditionVariable(ConditionVariable* variable, const void* object, argument
74 fVariable(variable),
83 out.Print("cvar init variable %p: object: %p \"%s\"", fVariable,
/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...]
H A Dcache.h30 void *variable; member in struct:CACHED_GENERIC
H A Dsecurity.h75 void *variable; member in struct:CACHED_PERMISSIONS_LEGACY
90 void *variable; member in struct:CACHED_SECURID
119 struct CACHED_PERMISSIONS *cachetable[1]; /* array of variable size */
/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/bin/network/telnet/
H A Dcommands.c252 * was to assign "c" to an unsigned int variable...
661 int *variable;
848 if (c->variable) {
849 *c->variable = !*c->variable; /* invert it */
851 printf("%s %s.\n", *c->variable? "Will" : "Won't",
960 if (c->variable) {
962 *c->variable = 1;
964 *c->variable = 0;
970 printf("%s %s.\n", *c->variable
659 int *variable; member in struct:togglelist
[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/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/kits/debugger/debug_info/
H A DDwarfStackFrameDebugInfo.cpp240 // create the variable
275 // create the variable
304 Variable* variable = new(std::nothrow) Variable(id, name, local
306 if (variable == NULL)
309 _variable = variable;
346 // create the variable
347 Variable* variable = new(std::nothrow) Variable(id, name, type, location); local
348 if (variable == NULL)
351 _variable = 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);
/haiku/src/kits/debugger/model/
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...]
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 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...]
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageExpressionEvaluator.cpp1713 errorMessage.SetToFormat("Unable to resolve variable name: '%s'",
1774 throw ParseException("Expected value or variable expression after"
1923 errorMessage.SetToFormat("Unable to resolve variable value for '%s': "
1933 errorMessage.SetToFormat("Unable to resolve variable value for '%s': "
1968 throw ParseException("Failed to generate internal variable name.",
1979 Variable* variable = new(std::nothrow) Variable(id, variableName, type, local
1981 if (variable == NULL) {
1982 throw ParseException("Out of memory while creating variable object.",
1986 BReference<Variable> variableReference(variable, true);
1988 variable);
[all...]
/haiku/src/kits/debugger/value/value_nodes/
H A DVariableValueNodeChild.cpp13 VariableValueNodeChild::VariableValueNodeChild(Variable* variable) argument
15 fVariable(variable)

Completed in 93 milliseconds

123