Searched defs:owner (Results 76 - 100 of 264) sorted by relevance

1234567891011

/external/valgrind/main/coregrind/m_scheduler/
H A Dticket-lock-linux.c62 int owner; member in struct:sched_lock
88 p->owner = 0;
103 return p->owner;
148 vg_assert(p->owner == 0);
149 p->owner = VG_(gettid)();
167 vg_assert(p->owner != 0);
168 p->owner = 0;
/external/webkit/Source/JavaScriptCore/wtf/
H A DThreadSpecific.h91 Data(T* value, ThreadSpecific<T>* owner) : value(value), owner(owner) {} argument
93 ~Data() { owner->destroy(this); }
97 ThreadSpecific<T>* owner; member in struct:WTF::ThreadSpecific::Data
273 pthread_setspecific(data->owner->m_key, ptr);
276 g_static_private_set(&data->owner->m_key, data, 0);
280 data->owner->m_key.setLocalData(data);
287 pthread_setspecific(data->owner->m_key, 0);
291 g_static_private_set(&data->owner
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DTileTexture.cpp80 bool TileTexture::acquire(TextureOwner* owner) argument
82 if (m_owner == owner)
85 return setOwner(owner);
88 bool TileTexture::setOwner(TextureOwner* owner) argument
91 if (m_owner && m_owner != owner)
95 m_owner = owner;
102 bool TileTexture::release(TextureOwner* owner) argument
104 ALOGV("texture %p releasing tile %p, m_owner %p", this, owner, m_owner);
105 if (m_owner != owner)
115 Tile* owner local
[all...]
/external/webkit/Source/WebCore/platform/graphics/ca/
H A DPlatformCALayer.h74 PlatformCALayerClient* owner() const { return m_owner; } function in class:WebCore::PlatformCALayer
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/
H A DCCHeadsUpDisplay.h45 static PassOwnPtr<CCHeadsUpDisplay> create(LayerRendererChromium* owner) argument
47 return adoptPtr(new CCHeadsUpDisplay(owner));
66 explicit CCHeadsUpDisplay(LayerRendererChromium* owner);
H A DCCVideoLayerImpl.cpp62 CCVideoLayerImpl::CCVideoLayerImpl(LayerChromium* owner) argument
63 : CCLayerImpl(owner)
/external/webkit/Source/WebCore/rendering/
H A DCounterNode.h51 RenderObject* owner() const { return m_owner; } function in class:WebCore::CounterNode
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DAVT.java164 ElemTemplateElement owner)
309 handler.createXPath(exprBuffer.toString(), owner);
162 AVT(StylesheetHandler handler, String uri, String name, String rawName, String stringedValue, ElemTemplateElement owner) argument
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DUnionPathIterator.java537 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
539 if(visitor.visitUnionPath(owner, this))
H A DWalkingIterator.java302 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
304 if(visitor.visitLocationPath(owner, this))
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DOperation.java170 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
172 if(visitor.visitBinaryOperation(owner, this))
H A DVariable.java270 org.apache.xpath.ExpressionNode owner = getExpressionOwner();
272 if (null != owner && owner instanceof org.apache.xalan.templates.ElemTemplateElement)
276 (org.apache.xalan.templates.ElemTemplateElement) owner;
346 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
348 visitor.visitVariableRef(owner, this);
/external/chromium/chrome/browser/
H A Dblocked_content_container.cc30 BlockedContentContainer::BlockedContentContainer(TabContents* owner) argument
31 : owner_(owner) {
62 // To support the owner blocking the content again we copy and erase
/external/chromium/chrome/browser/printing/
H A Dprint_job_unittest.cc29 explicit TestPrintJobWorker(printing::PrintJobWorkerOwner* owner) argument
30 : printing::PrintJobWorker(owner) {
102 scoped_refptr<TestOwner> owner(new TestOwner);
104 job->Initialize(owner, &source, 1);
/external/chromium/chrome/browser/ui/gtk/
H A Dconstrained_window_gtk.cc32 TabContents* owner, ConstrainedWindowGtkDelegate* delegate)
33 : owner_(owner),
37 DCHECK(owner);
31 ConstrainedWindowGtk( TabContents* owner, ConstrainedWindowGtkDelegate* delegate) argument
/external/chromium/chrome/browser/ui/views/location_bar/
H A Dpage_action_image_view.cc20 PageActionImageView::PageActionImageView(LocationBarView* owner, argument
23 : owner_(owner),
/external/iproute2/ip/
H A Diptuntap.c275 long flags, owner = -1, group = -1; local
290 read_prop(d->d_name, "owner", &owner);
295 if (owner != -1)
296 printf(" user %ld", owner);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
H A DConstraint.java25 /** The constraint's owner. */
26 protected final Feature owner; field in class:Constraint
42 * the old memory address of the constraint owner
73 this.owner = new Feature(ownerSpace, ownerOMA, blenderContext);
78 * This method bakes the required sontraints into its owner.
81 this.owner.update();
89 * Bake the animation's constraints into its owner.
101 protected BlenderTrack getTrack(Object owner, Skeleton skeleton, Animation animation) { argument
102 if(owner instanceof Bone) {
103 int boneIndex = skeleton.getBoneIndex((Bone) owner);
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DImplHandler.java52 private final AssetManager owner; field in class:ImplHandler
63 public ImplHandler(AssetManager owner){ argument
64 this.owner = owner;
149 AssetInfo info = locator.locate(owner, key);
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DLightList.java52 private Spatial owner; field in class:LightList
79 * @param owner The spatial owner
81 public LightList(Spatial owner) { argument
86 this.owner = owner;
90 * Set the owner of the LightList. Only used for cloning.
91 * @param owner
93 public void setOwner(Spatial owner){ argument
94 this.owner
[all...]
H A DSpotLight.java78 protected void computeLastDistance(Spatial owner) { argument
79 if (owner.getWorldBound() != null) {
80 BoundingVolume bv = owner.getWorldBound();
83 lastDistance = owner.getWorldTranslation().distanceSquared(position);
/external/jmonkeyengine/engine/src/core/com/jme3/material/
H A DTechnique.java50 private Material owner; field in class:Technique
60 * @param owner The material that will own this technique
63 public Technique(Material owner, TechniqueDef def) { argument
64 this.owner = owner;
143 // if (ifNotOwner && u.getLastChanger() == owner)
158 // u.setLastChanger(owner);
188 Collection<MatParam> params = owner.getParams();
225 //owner.updateUniformLinks();
246 // oc.write(owner, "owne
[all...]
/external/kernel-headers/original/asm-mips/
H A Djazzdma.h52 unsigned int owner; /* owner of this entry (0=free) */ member in struct:VDMA_PGTBL_ENTRY
/external/kernel-headers/original/linux/
H A Dipmi_smi.h83 struct module *owner; member in struct:ipmi_smi_handlers
207 void *data, struct module *owner);
/external/kernel-headers/original/linux/sunrpc/
H A Dsvcauth.h96 struct module *owner; member in struct:auth_ops

Completed in 587 milliseconds

1234567891011