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

1234

/haiku-fatelf/src/libs/compat/freebsd_network/
H A Dcondvar.c13 void cv_init(struct cv* variable, const char* description) argument
15 conditionInit(variable, description);
19 void cv_signal(struct cv* variable) argument
21 conditionNotifyOne(variable);
25 int cv_timedwait(struct cv* variable, struct mtx* mutex, int timeout) argument
30 status = conditionTimedWait(variable, timeout);
37 void cv_wait(struct cv* variable, struct mtx* mutex) argument
40 conditionWait(variable);
H A DCondvar.cpp16 conditionInit(struct cv* variable, const char* description) argument
18 variable->condition.Init(variable, description);
23 conditionPublish(struct cv* variable, const void* waitChannel, argument
26 variable->condition.Publish(waitChannel, description);
31 conditionUnpublish(struct cv* variable) argument
33 variable->condition.Unpublish();
38 conditionTimedWait(struct cv* variable, const int timeout) argument
40 status_t status = variable->condition.Wait(B_RELATIVE_TIMEOUT,
50 conditionWait(struct cv* variable) argument
57 conditionNotifyOne(struct cv* variable) argument
[all...]
/haiku-fatelf/src/libs/ncurses/misc/
H A Dshlib34 # libraries on systems that use the $LD_LIBRARY_PATH variable and don't embed
41 # variable has to be set to run the programs within this directory tree.
52 # variable, and on some systems (IRIX) you can even run the resulting binaries
89 # Set the environment variable.
122 variable=PATH
125 variable=LIBRARY_PATH
128 variable=DYLD_LIBRARY_PATH
131 variable=LD_LIBRARY_PATH
135 eval 'test -z "$'$variable'" && '$variable'
[all...]
/haiku-fatelf/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-fatelf/src/apps/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.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 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();
170 StackFrame::AddLocalVariable(Variable* variable) argument
172 if (!fLocalVariables.AddItem(variable))
175 variable->AcquireReference();
195 StackFrame::NotifyValueRetrieved(Variable* variable, TypeComponentPath* path) argument
199 listener->StackFrameValueRetrieved(this, variable, path);
214 Variable* variable, TypeComponentPat
213 StackFrameValueRetrieved(StackFrame* stackFrame, Variable* variable, TypeComponentPath* path) argument
[all...]
H A DStackFrame.h77 bool AddLocalVariable(Variable* variable);
86 void NotifyValueRetrieved(Variable* variable,
116 Variable* variable,
/haiku-fatelf/src/apps/debugger/user_interface/gui/model/
H A DVariablesViewState.cpp52 ObjectID* variable; member in struct:VariablesViewState::Key
55 Key(ObjectID* variable, TypeComponentPath* path) argument
57 variable(variable),
64 return variable->HashValue() ^ path->HashValue();
69 return *variable == *other.variable && *path == *other.path;
80 InfoEntry(ObjectID* variable, TypeComponentPath* path) argument
82 Key(variable, path)
84 variable
168 GetNodeInfo(ObjectID* variable, const TypeComponentPath* path) const argument
176 SetNodeInfo(ObjectID* variable, TypeComponentPath* path, const VariablesViewNodeInfo& info) argument
[all...]
H A DVariablesViewState.h47 const VariablesViewNodeInfo* GetNodeInfo(ObjectID* variable,
49 inline const VariablesViewNodeInfo* GetNodeInfo(ObjectID* variable,
52 status_t SetNodeInfo(ObjectID* variable,
74 VariablesViewState::GetNodeInfo(ObjectID* variable, argument
77 return GetNodeInfo(variable, &path);
/haiku-fatelf/src/system/kernel/
H A Dcondition_variable.cpp35 size_t Hash(ConditionVariable* variable) const
36 { return (size_t)variable->fObject; }
37 bool Compare(const void* key, ConditionVariable* variable) const
38 { return key == variable->fObject; }
39 ConditionVariable*& GetLink(ConditionVariable* variable) const
40 { return variable->fNext; }
68 ConditionVariable* variable = sConditionVariableHash.Lookup((void*)address);
70 if (variable == NULL) {
71 // It must be a direct pointer to a condition variable.
72 variable
170 AddToVariable(ConditionVariable* variable) argument
233 ConditionVariable* variable = sConditionVariableHash.Lookup(fObject); local
270 ConditionVariable* variable = sConditionVariableHash.Lookup(object); local
284 ConditionVariable* variable = sConditionVariableHash.Lookup(object); local
[all...]
/haiku-fatelf/build/scripts/
H A Dconvert_build_config_to_shell_format.pl17 my ($variable, $value) = ($1, $2);
18 $variable =~ tr{+}{X}; # '+' is illegal as part of shell variable
19 print "$variable='$value'\n";
/haiku-fatelf/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-fatelf/src/apps/debugger/value/value_nodes/
H A DVariableValueNodeChild.cpp13 VariableValueNodeChild::VariableValueNodeChild(Variable* variable) argument
15 fVariable(variable)
H A DVariableValueNodeChild.h17 VariableValueNodeChild(Variable* variable);
/haiku-fatelf/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; }
100 // remove entry from variable, if not done yet
121 ConditionVariableEntry::AddToVariable(ConditionVariable* variable) argument
127 fVariable = variable;
212 /*! Called with interrupts disabled and the condition variable spinloc
[all...]
/haiku-fatelf/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-fatelf/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-fatelf/src/apps/debugger/debug_managers/
H A DValueNodeManager.cpp68 for (int32 i = 0; Variable* variable = fStackFrame->ParameterAt(i);
70 _AddNode(variable);
73 for (int32 i = 0; Variable* variable
75 _AddNode(variable);
168 ValueNodeManager::_AddNode(Variable* variable) argument
170 // create the node child for the variable
172 variable);
/haiku-fatelf/src/documentation/docbook-xsl/extensions/saxon643/com/nwalsh/saxon/
H A DUnwrapLinks.java55 * <p>Find the string value of a stylesheet variable or parameter</p>
58 * <code>context</code>. Returns the empty string if the variable is
62 * @param varName The name of the variable (without the dollar sign)
64 * @return The string value of the variable
67 Value variable = null;
71 variable = Extensions.evaluate(context, "$" + varName);
72 varString = variable.asString();
75 System.out.println("Undefined variable: " + varName);
78 System.out.println("Undefined variable: " + varName);
/haiku-fatelf/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-fatelf/src/bin/gawk/
H A Dcustom.h66 #define variable(a,b,c) variabl(a,b,c) macro

Completed in 191 milliseconds

1234