HomeSort by relevance Sort by last modified time
    Searched full:attrib (Results 1 - 25 of 240) sorted by null

1 2 3 4 5 6 7 8 910

  /external/openssh/
sftp-common.h 31 typedef struct Attrib Attrib;
34 struct Attrib {
44 void attrib_clear(Attrib *);
45 void stat_to_attrib(const struct stat *, Attrib *);
46 void attrib_to_stat(const Attrib *, struct stat *);
47 Attrib *decode_attrib(Buffer *);
48 void encode_attrib(Buffer *, const Attrib *);
sftp-client.h 29 Attrib a;
71 int do_mkdir(struct sftp_conn *, char *, Attrib *, int);
77 Attrib *do_stat(struct sftp_conn *, char *, int);
80 Attrib *do_lstat(struct sftp_conn *, char *, int);
83 int do_setstat(struct sftp_conn *, char *, Attrib *);
86 int do_fsetstat(struct sftp_conn *, char *, u_int, Attrib *);
109 int do_download(struct sftp_conn *, char *, char *, Attrib *, int);
115 int download_dir(struct sftp_conn *, char *, char *, Attrib *, int, int);
  /frameworks/rs/driver/
rsdVertexArray.h 33 class Attrib {
44 Attrib();
49 RsdVertexArray(const Attrib *attribs, uint32_t numAttribs);
61 const Attrib *mAttribs;
rsdVertexArray.cpp 31 RsdVertexArray::RsdVertexArray(const Attrib *attribs, uint32_t numAttribs) {
39 RsdVertexArray::Attrib::Attrib() {
43 void RsdVertexArray::Attrib::clear() {
54 void RsdVertexArray::Attrib::set(uint32_t type, uint32_t size, uint32_t stride,
  /sdk/emulator/opengl/tests/ut_renderer/
RendererSurface.cpp 30 EGLint attrib[MAX_ATTRIB]; local
33 attrib[pos++] = EGL_SURFACE_TYPE; attrib[pos++] = EGL_WINDOW_BIT;
34 if (config & CONFIG_DEPTH) {attrib[pos++] = EGL_DEPTH_SIZE; attrib[pos++] = 1;}
35 attrib[pos++] = EGL_NONE;
37 if (!eglChooseConfig(eglDisplay, attrib, &eglConfig, 1, &nConfigs)) {
  /external/bluetooth/bluedroid/stack/avrc/
avrc_utils.c 86 ** Description Check if the given attrib value is valid for its attribute
91 BOOLEAN avrc_is_valid_player_attrib_value(UINT8 attrib, UINT8 value)
95 switch(attrib)
117 if (attrib >= AVRC_PLAYER_SETTING_LOW_MENU_EXT &&
118 attrib <= AVRC_PLAYER_SETTING_HIGH_MENU_EXT)
123 "avrc_is_valid_player_attrib_value() found not matching attrib(x%x)-value(x%x) pair!",
124 attrib, value);
133 ** Description Check if the given attrib value is a valid one
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLStateType.java 35 VERTEX_ATTRIB_ARRAY("Vertex Attrib Array Properties"),
36 VERTEX_ATTRIB_ARRAY_COMPOSITE("Vertex Attrib Array #n Properties"),
37 VERTEX_ATTRIB_ARRAY_ENABLED("Vertex Attrib Array Enable"),
38 VERTEX_ATTRIB_ARRAY_SIZE("Vertex Attrib Array Size"),
39 VERTEX_ATTRIB_ARRAY_STRIDE("Vertex Attrib Array Stride"),
40 VERTEX_ATTRIB_ARRAY_TYPE("Vertex Attrib Array Type"),
41 VERTEX_ATTRIB_ARRAY_NORMALIZED("Vertex Attrib Array Normalized"),
42 VERTEX_ATTRIB_ARRAY_POINTER("Vertex Attrib Array Pointer"),
  /external/llvm/docs/
doxygen.footer 10 <!--#include virtual="/attrib.incl" -->
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglPbufferSurface.cpp 18 bool EglPbufferSurface::setAttrib(EGLint attrib,EGLint val) {
19 switch(attrib) {
48 bool EglPbufferSurface::getAttrib(EGLint attrib,EGLint* val) {
49 switch(attrib) {
EglValidate.cpp 19 bool EglValidate::confAttrib(EGLint attrib) {
20 switch(attrib) {
55 bool EglValidate::noAttribs(const EGLint* attrib) {
56 return !attrib || attrib[0] == EGL_NONE ;
EglPbufferSurface.h 33 bool setAttrib(EGLint attrib,EGLint val);
34 bool getAttrib(EGLint attrib,EGLint* val);
EglPixmapSurface.cpp 40 bool EglPixmapSurface::getAttrib(EGLint attrib,EGLint* val) {
41 switch(attrib) {
EglSurface.cpp 30 bool EglSurface::setAttrib(EGLint attrib,EGLint val) {
31 switch(attrib) {
EglSurface.h 39 virtual bool setAttrib(EGLint attrib,EGLint val);
40 virtual bool getAttrib(EGLint attrib,EGLint* val) = 0;
EglValidate.h 23 static bool confAttrib(EGLint attrib);
24 static bool noAttribs(const EGLint* attrib);
EglWindowSurface.cpp 41 bool EglWindowSurface::getAttrib(EGLint attrib,EGLint* val) {
42 switch(attrib) {
  /frameworks/base/media/mca/filterfw/native/core/
shader_program.cpp 131 const VertexAttrib& attrib = iter->second; local
132 if (attrib.owned_data)
133 delete[] attrib.owned_data;
962 VertexAttrib attrib; local
963 attrib.is_const = false;
964 attrib.index = var;
965 attrib.components = components;
966 attrib.normalized = normalize;
967 attrib.stride = stride;
968 attrib.type = type
988 VertexAttrib attrib; local
1028 VertexAttrib attrib; local
1053 const VertexAttrib& attrib = iter->second; local
    [all...]
  /external/markdown/markdown/extensions/
toc.py 24 div.attrib["class"] = "toc"
30 header.attrib["class"] = "toctitle"
40 if "id" in c.attrib:
41 used_ids.append(c.attrib["id"])
77 if not "id" in c.attrib:
85 c.attrib["id"] = id
87 id = c.attrib["id"]
93 link.attrib["href"] = '#' + id
98 anchor.attrib["href"] = "#" + id
99 anchor.attrib["class"] = "toclink
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/
AttributeList.java 70 * @param attrib {@code non-null;} attribute to start looking after
71 * @return {@code null-ok;} next attribute after {@code attrib} with the
72 * same name as {@code attrib}
74 public Attribute findNext(Attribute attrib);
StdAttributeList.java 68 public Attribute findNext(Attribute attrib) {
75 if (att == attrib) {
83 String name = attrib.getName();
  /dalvik/dx/src/com/android/dx/cf/direct/
package.html 7 <li><code>com.android.dx.cf.attrib</code></li>
  /dalvik/dx/src/com/android/dx/cf/iface/
AttributeList.java 70 * @param attrib {@code non-null;} attribute to start looking after
71 * @return {@code null-ok;} next attribute after {@code attrib} with the
72 * same name as {@code attrib}
74 public Attribute findNext(Attribute attrib);
StdAttributeList.java 68 public Attribute findNext(Attribute attrib) {
75 if (att == attrib) {
83 String name = attrib.getName();
  /external/openssl/crypto/pkcs12/
p12_attr.c 68 if (X509at_add1_attr_by_NID(&bag->attrib, NID_localKeyID,
93 if (X509at_add1_attr_by_NID(&bag->attrib, NID_friendlyName,
104 if (X509at_add1_attr_by_NID(&bag->attrib, NID_friendlyName,
114 if (X509at_add1_attr_by_NID(&bag->attrib, NID_ms_csp_name,
123 X509_ATTRIBUTE *attrib; local
127 attrib = sk_X509_ATTRIBUTE_value (attrs, i);
128 if (OBJ_obj2nid (attrib->object) == attr_nid) {
129 if (sk_ASN1_TYPE_num (attrib->value.set))
130 return sk_ASN1_TYPE_value(attrib->value.set, 0);
  /frameworks/native/opengl/tests/hwc/
hwcTestLib.cpp 545 const struct attrib { struct
568 const struct attrib *attrib; local
569 for (attrib = attributes; attrib < attributes + NUMA(attributes);
570 attrib++) {
571 if (attrib->format == format) { break; }
573 if (attrib >= attributes + NUMA(attributes)) {
579 pixel = htonl((uint32_t) round((((1 << attrib->c1Size) - 1) * color.c1()))
581 - (attrib->c1Offset + attrib->c1Size)))
608 const struct attrib { struct
639 const struct attrib *attrib; local
798 const struct attrib { struct
    [all...]

Completed in 1032 milliseconds

1 2 3 4 5 6 7 8 910