Searched refs:property (Results 1 - 25 of 137) sorted by relevance

123456

/openbsd-current/gnu/llvm/lldb/bindings/interface/
H A DSBSymbol.i84 name = property(GetName, None, doc='''A read only property that returns the name for this symbol as a string.''')
85 mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this symbol as a string.''')
86 type = property(GetType, None, doc='''A read only property that returns an lldb enumeration value (see enumerations that start with "lldb.eSymbolType") that represents the type of this symbol.''')
87 addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this symbol.''')
88 end_addr = property(GetEndAddress, None, doc='''A read only property tha
[all...]
H A DSBExecutionContext.i45 target = property(GetTarget, None, doc='''A read only property that returns the same result as GetTarget().''')
46 process = property(GetProcess, None, doc='''A read only property that returns the same result as GetProcess().''')
47 thread = property(GetThread, None, doc='''A read only property that returns the same result as GetThread().''')
48 frame = property(GetFrame, None, doc='''A read only property that returns the same result as GetFrame().''')
H A DSBSection.i135 name = property(GetName, None, doc='''A read only property that returns the name of this section as a string.''')
136 addr = property(get_addr, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this section.''')
137 file_addr = property(GetFileAddress, None, doc='''A read only property that returns an integer that represents the starting "file" address for this section, or the address of the section in the object file in which it is defined.''')
138 size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of this section as an integer.''')
139 file_offset = property(GetFileOffset, None, doc='''A read only property tha
[all...]
H A DSBError.i112 value = property(GetError, None, doc='''A read only property that returns the same result as GetError().''')
113 fail = property(Fail, None, doc='''A read only property that returns the same result as Fail().''')
114 success = property(Success, None, doc='''A read only property that returns the same result as Success().''')
115 description = property(GetCString, None, doc='''A read only property that returns the same result as GetCString().''')
116 type = property(GetType, None, doc='''A read only property tha
[all...]
H A DSBLineEntry.i93 file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
94 line = property(GetLine, None, doc='''A read only property that returns the 1 based line number for this line entry, a return value of zero indicates that no line information is available.''')
95 column = property(GetColumn, None, doc='''A read only property that returns the 1 based column number for this line entry, a return value of zero indicates that no column information is available.''')
96 addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this line entry.''')
97 end_addr = property(GetEndAddress, None, doc='''A read only property tha
[all...]
H A DSBFrame.i342 pc = property(GetPC, SetPC)
343 addr = property(GetPCAddress, None, doc='''A read only property that returns the program counter (PC) as a section offset address (lldb.SBAddress).''')
344 fp = property(GetFP, None, doc='''A read only property that returns the frame pointer (FP) as an unsigned integer.''')
345 sp = property(GetSP, None, doc='''A read only property that returns the stack pointer (SP) as an unsigned integer.''')
346 module = property(GetModule, None, doc='''A read only property that returns an lldb object that represents the module (lldb.SBModule) for this stack frame.''')
347 compile_unit = property(GetCompileUni
[all...]
H A DSBSymbolContext.i88 module = property(GetModule, SetModule, doc='''A read/write property that allows the getting/setting of the module (lldb.SBModule) in this symbol context.''')
89 compile_unit = property(GetCompileUnit, SetCompileUnit, doc='''A read/write property that allows the getting/setting of the compile unit (lldb.SBCompileUnit) in this symbol context.''')
90 function = property(GetFunction, SetFunction, doc='''A read/write property that allows the getting/setting of the function (lldb.SBFunction) in this symbol context.''')
91 block = property(GetBlock, SetBlock, doc='''A read/write property that allows the getting/setting of the block (lldb.SBBlock) in this symbol context.''')
92 symbol = property(GetSymbol, SetSymbol, doc='''A read/write property tha
[all...]
H A DSBFunction.i121 addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this function.''')
122 end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this function.''')
123 block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the top level lexical block (lldb.SBBlock) for this function.''')
124 instructions = property(get_instructions_from_current_target, None, doc='''A read only property that returns an lldb object that represents the instructions (lldb.SBInstructionList) for this function.''')
125 mangled = property(GetMangledName, None, doc='''A read only property tha
[all...]
H A DSBFileSpec.i87 fullpath = property(str, None, doc='''A read only property that returns the fullpath as a python string.''')
88 basename = property(GetFilename, None, doc='''A read only property that returns the path basename as a python string.''')
89 dirname = property(GetDirectory, None, doc='''A read only property that returns the path directory name as a python string.''')
90 exists = property(Exists, None, doc='''A read only property that returns a boolean value that indicates if the file exists.''')
H A DSBDeclaration.i60 file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
61 line = property(GetLine, None, doc='''A read only property that returns the 1 based line number for this line entry, a return value of zero indicates that no line information is available.''')
62 column = property(GetColumn, None, doc='''A read only property that returns the 1 based column number for this line entry, a return value of zero indicates that no column information is available.''')
H A DSBTypeSummary.i108 options = property(GetOptions, SetOptions)
109 is_summary_string = property(IsSummaryString)
110 is_function_name = property(IsFunctionName)
111 is_function_name = property(IsFunctionCode)
112 summary_data = property(GetData)
H A DSBAddress.i147 __runtime_error_str = 'This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.'
150 '''Get the load address for a lldb.SBAddress using the current target. This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.'''
156 '''Set the load address for a lldb.SBAddress using the current target. This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.'''
162 '''Convert an address to a load address if there is a process and that process is alive, or to a file address otherwise. This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.'''
170 '''Convert the address to an octal string. This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.'''
174 '''Convert the address to an hex string. This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.'''
177 module = property(GetModule, None, doc='''A read only property that returns an lldb object that represents the module (lldb.SBModule) that this address resides within.''')
178 compile_unit = property(GetCompileUnit, None, doc='''A read only property tha
[all...]
H A DSBInstruction.i98 mnemonic = property(__mnemonic_property__, None, doc='''A read only property that returns the mnemonic for this instruction as a string.''')
99 operands = property(__operands_property__, None, doc='''A read only property that returns the operands for this instruction as a string.''')
100 comment = property(__comment_property__, None, doc='''A read only property that returns the comment for this instruction as a string.''')
101 addr = property(GetAddress, None, doc='''A read only property that returns an lldb object that represents the address (lldb.SBAddress) for this instruction.''')
102 size = property(GetByteSize, None, doc='''A read only property tha
[all...]
H A DSBType.i50 name = property(GetName, None, doc='''A read only property that returns the name for this member as a string.''')
51 type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the type (lldb.SBType) for this member.''')
52 byte_offset = property(GetOffsetInBytes, None, doc='''A read only property that returns offset in bytes for this member as an integer.''')
53 bit_offset = property(GetOffsetInBits, None, doc='''A read only property that returns offset in bits for this member as an integer.''')
54 is_bitfield = property(IsBitfield, None, doc='''A read only property tha
[all...]
H A DSBTypeSynthetic.i70 options = property(GetOptions, SetOptions)
71 contains_code = property(IsClassCode, None)
72 synthetic_data = property(GetData, None)
H A DSBBlock.i149 parent = property(GetParent, None, doc='''A read only property that returns the same result as GetParent().''')
150 first_child = property(GetFirstChild, None, doc='''A read only property that returns the same result as GetFirstChild().''')
151 call_site = property(get_call_site, None, doc='''A read only property that returns a lldb.declaration object that contains the inlined call site file, line and column.''')
152 sibling = property(GetSibling, None, doc='''A read only property that returns the same result as GetSibling().''')
153 name = property(GetInlinedName, None, doc='''A read only property tha
[all...]
H A DSBTypeCategory.i204 formats = property(get_formats_array, None, doc='''A read only property that returns a list() of lldb.SBTypeFormat objects contained in this category''')
205 format = property(get_formats_access_object, None, doc=r'''A read only property that returns an object that you can use to look for formats by index or type name.''')
206 summaries = property(get_summaries_array, None, doc='''A read only property that returns a list() of lldb.SBTypeSummary objects contained in this category''')
207 summary = property(get_summaries_access_object, None, doc=r'''A read only property that returns an object that you can use to look for summaries by index or type name or regular expression.''')
208 filters = property(get_filters_array, None, doc='''A read only property tha
[all...]
/openbsd-current/lib/libc/locale/
H A Dwctype.c61 wctype(const char *property) argument
66 if (strcmp(wctype_entries[i].te_name, property) == 0)
73 wctype_l(const char *property, locale_t locale __attribute__((__unused__))) argument
75 return wctype(property);
/openbsd-current/sys/dev/pci/drm/
H A Ddrm_property.c43 * property types and ranges.
50 * tables, color correction matrices or large structures) a property can instead
54 * per-object mapping from those names to the property ID used in the atomic
55 * IOCTL and in the get/set property IOCTL.
82 * drm_property_create - create a new property type
84 * @flags: flags specifying the property type
85 * @name: name of the property
88 * This creates a new generic drm property which can then be attached to a drm
89 * object with drm_object_attach_property(). The returned property object must
94 * A pointer to the newly created property o
100 struct drm_property *property = NULL; local
166 struct drm_property *property; local
215 struct drm_property *property; local
245 struct drm_property *property; local
335 struct drm_property *property; local
389 drm_property_add_enum(struct drm_property *property, uint64_t value, const char *name) argument
440 drm_property_destroy(struct drm_device *dev, struct drm_property *property) argument
461 struct drm_property *property; local
874 drm_property_change_valid_get(struct drm_property *property, uint64_t value, struct drm_mode_object **ref) argument
930 drm_property_change_valid_put(struct drm_property *property, struct drm_mode_object *ref) argument
[all...]
H A Ddrm_atomic_uapi.c62 * the enable property.
111 * @blob: pointer to blob property to use for mode
113 * Set a mode (originating from a blob property) on the desired CRTC state.
114 * This function will take a reference on the blob property for the CRTC state,
115 * and release the reference held on the state's existing mode property, if any
409 struct drm_crtc_state *state, struct drm_property *property,
417 if (property == config->prop_active)
419 else if (property == config->prop_mode_id) {
425 } else if (property == config->prop_vrr_enabled) {
427 } else if (property
408 drm_atomic_crtc_set_property(struct drm_crtc *crtc, struct drm_crtc_state *state, struct drm_property *property, uint64_t val) argument
477 drm_atomic_crtc_get_property(struct drm_crtc *crtc, const struct drm_crtc_state *state, struct drm_property *property, uint64_t *val) argument
513 drm_atomic_plane_set_property(struct drm_plane *plane, struct drm_plane_state *state, struct drm_file *file_priv, struct drm_property *property, uint64_t val) argument
609 drm_atomic_plane_get_property(struct drm_plane *plane, const struct drm_plane_state *state, struct drm_property *property, uint64_t *val) argument
691 drm_atomic_connector_set_property(struct drm_connector *connector, struct drm_connector_state *state, struct drm_file *file_priv, struct drm_property *property, uint64_t val) argument
817 drm_atomic_connector_get_property(struct drm_connector *connector, const struct drm_connector_state *state, struct drm_property *property, uint64_t *val) argument
899 drm_atomic_get_property(struct drm_mode_object *obj, struct drm_property *property, uint64_t *val) argument
[all...]
H A Ddrm_mode_object.c224 * drm_object_attach_property - attach a property to a modeset object
226 * @property: property to attach
227 * @init_val: initial value of the property
229 * This attaches the given property to the modeset object with the given initial
237 struct drm_property *property,
241 struct drm_device *dev = property->dev;
254 WARN(1, "Failed to attach object property (type: 0x%x). Please "
261 obj->properties->properties[count] = property;
268 * drm_object_property_set_value - set the value of a property
236 drm_object_attach_property(struct drm_mode_object *obj, struct drm_property *property, uint64_t init_val) argument
286 drm_object_property_set_value(struct drm_mode_object *obj, struct drm_property *property, uint64_t val) argument
305 __drm_object_property_get_prop_value(struct drm_mode_object *obj, struct drm_property *property, uint64_t *val) argument
321 __drm_object_property_get_value(struct drm_mode_object *obj, struct drm_property *property, uint64_t *val) argument
371 drm_object_property_get_value(struct drm_mode_object *obj, struct drm_property *property, uint64_t *val) argument
396 drm_object_property_get_default_value(struct drm_mode_object *obj, struct drm_property *property, uint64_t *val) argument
595 struct drm_property *property; local
[all...]
/openbsd-current/lib/libc/arch/aarch64/
H A DMakefile.inc6 AFLAGS+= -mmark-bti-property
/openbsd-current/gnu/llvm/lldb/source/Interpreter/
H A DOptionValueProperties.cpp31 Property property(definition);
32 assert(property.IsValid());
33 m_name_to_index.Append(ConstString(property.GetName()), m_properties.size());
34 property.GetValue()->SetParent(shared_from_this());
35 m_properties.push_back(property);
42 Property *property = ProtectedGetPropertyAtIndex(property_idx); local
43 if (property)
44 property->SetValueChangedCallback(std::move(callback));
51 Property property(name.GetStringRef(), desc.GetStringRef(), is_global,
54 m_properties.push_back(property);
214 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
223 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
231 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx); local
242 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
273 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx); local
298 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
309 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx); local
323 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
331 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
342 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx); local
354 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx); local
366 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
377 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
389 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx); local
401 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
412 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
423 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
434 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
445 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx); local
457 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
468 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx); local
487 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
498 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx); local
542 const Property *property = GetPropertyAtIndex(exe_ctx, false, i); local
559 const Property *property = GetPropertyAtIndex(exe_ctx, false, i); local
623 const Property *property = nullptr; local
655 const Property *property = ProtectedGetPropertyAtIndex(i); local
660 const Property *property = ProtectedGetPropertyAtIndex(i); local
672 const Property *property = ProtectedGetPropertyAtIndex(i); local
[all...]
/openbsd-current/gnu/llvm/clang/docs/analyzer/checkers/
H A Dcallandmessage_example.c32 @property (readwrite,assign) id x;
44 @property (readwrite,assign) id x;
59 @property (readwrite,assign) id x;
/openbsd-current/sys/dev/pci/drm/include/drm/
H A Ddrm_mode_object.h65 * struct drm_object_properties - property tracking for &drm_mode_object
79 * a better job of detaching property from mode objects to avoid
80 * dangling property pointers:
85 * @values: Array to store the property values, matching @properties. Do
128 struct drm_property *property,
131 struct drm_property *property,
134 struct drm_property *property,
138 struct drm_property *property,

Completed in 306 milliseconds

123456