HomeSort by relevance Sort by last modified time
    Searched refs:iface (Results 51 - 75 of 386) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/mesa3d/src/pixelflinger2/
pixelflinger2.h 107 const GGLInterface * iface; member in struct:GGLContext::Worker
150 void (* PickScanLine)(GGLInterface * iface);
151 void (* PickRaster)(GGLInterface * iface);
174 void InitializeGGLState(GGLInterface * iface); // should be private
175 void UninitializeGGLState(GGLInterface * iface); // should be private
178 void InitializeBufferFunctions(GGLInterface * iface);
179 void InitializeRasterFunctions(GGLInterface * iface);
180 void InitializeScanLineFunctions(GGLInterface * iface);
181 void InitializeTextureFunctions(GGLInterface * iface);
183 void InitializeShaderFunctions(GGLInterface * iface); // set function pointers and create needed object
    [all...]
buffer.cpp 25 static void DepthFunc(GGLInterface * iface, GLenum func)
27 GGL_GET_CONTEXT(ctx, iface);
31 SetShaderVerifyFunctions(iface);
34 static void StencilFuncSeparate(GGLInterface * iface, GLenum face, GLenum func, GLint ref, GLuint mask)
36 GGL_GET_CONTEXT(ctx, iface);
54 SetShaderVerifyFunctions(iface);
80 static void StencilOpSeparate(GGLInterface * iface, GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass)
82 GGL_GET_CONTEXT(ctx, iface);
95 SetShaderVerifyFunctions(iface);
98 static void StencilSelect(const GGLInterface * iface, GLenum face
    [all...]
shader.cpp 144 static gl_shader * ShaderCreate(const GGLInterface * iface, GLenum type)
146 GGL_GET_CONST_CONTEXT(ctx, iface);
183 static GLboolean ShaderCompile(const GGLInterface * iface, gl_shader * shader,
186 GGL_GET_CONST_CONTEXT(ctx, iface);
206 static void ShaderDelete(const GGLInterface * iface, gl_shader * shader)
229 static gl_shader_program * ShaderProgramCreate(const GGLInterface * iface)
231 GGL_GET_CONST_CONTEXT(ctx, iface);
256 static void ShaderAttach(const GGLInterface * iface, gl_shader_program * program,
574 static void ShaderUse(GGLInterface * iface, gl_shader_program * program)
576 GGL_GET_CONTEXT(ctx, iface);
    [all...]
  /frameworks/base/tools/aidl/
generate_java.h 12 interface_type* iface);
14 Class* generate_binder_interface_class(const interface_type* iface);
15 Class* generate_rpc_interface_class(const interface_type* iface);
generate_java.cpp 62 interface_type* iface)
66 if (iface->document_item.item_type == INTERFACE_TYPE_BINDER) {
67 cl = generate_binder_interface_class(iface);
69 else if (iface->document_item.item_type == INTERFACE_TYPE_RPC) {
70 cl = generate_rpc_interface_class(iface);
75 if (iface->package) document->package = iface->package;
  /external/dhcpcd/
configure.c 166 make_env(const struct interface *iface, const char *reason, char ***argv)
170 const struct if_options *ifo = iface->state->options;
189 e = strlen("interface") + strlen(iface->name) + 2;
191 snprintf(env[0], e, "interface=%s", iface->name);
202 snprintf(env[3], e, "ifmetric=%d", iface->metric);
204 snprintf(env[4], e, "ifwireless=%d", iface->wireless);
206 snprintf(env[5], e, "ifflags=%u", iface->flags);
208 snprintf(env[6], e, "ifmtu=%d", get_mtu(iface->name));
224 if ((dhcp && iface->state->new) || (ra && iface->ras))
    [all...]
duid.c 42 get_duid(unsigned char *duid, const struct interface *iface)
79 hw = htons(iface->family);
89 memcpy(p, iface->hwaddr, iface->hwlen);
90 p += iface->hwlen;
  /frameworks/base/core/java/android/net/
TrafficStats.java 270 for (String iface : getMobileIfaces()) {
271 total += getTxPackets(iface);
284 for (String iface : getMobileIfaces()) {
285 total += getRxPackets(iface);
298 for (String iface : getMobileIfaces()) {
299 total += getTxBytes(iface);
312 for (String iface : getMobileIfaces()) {
313 total += getRxBytes(iface);
325 public static long getTxPackets(String iface) {
326 return nativeGetIfaceStat(iface, TYPE_TX_PACKETS)
    [all...]
EthernetDataTracker.java 72 public void interfaceStatusChanged(String iface, boolean up) {
73 Log.d(TAG, "Interface status changed: " + iface + (up ? "up" : "down"));
76 public void interfaceLinkStateChanged(String iface, boolean up) {
77 if (mIface.equals(iface) && mLinkUp != up) {
78 Log.d(TAG, "Interface " + iface + " link " + (up ? "up" : "down"));
91 public void interfaceAdded(String iface) {
92 mTracker.interfaceAdded(iface);
95 public void interfaceRemoved(String iface) {
96 mTracker.interfaceRemoved(iface);
99 public void limitReached(String limitName, String iface) {
    [all...]
  /external/libvpx/vpx/src/
vpx_encoder.c 23 vpx_codec_iface_t *iface,
32 else if (!ctx || !iface || !cfg)
34 else if (iface->abi_version != VPX_CODEC_INTERNAL_ABI_VERSION)
36 else if (!(iface->caps & VPX_CODEC_CAP_ENCODER))
38 else if ((flags & VPX_CODEC_USE_XMA) && !(iface->caps & VPX_CODEC_CAP_XMA))
41 && !(iface->caps & VPX_CODEC_CAP_PSNR))
45 ctx->iface = iface;
46 ctx->name = iface->name;
50 res = ctx->iface->init(ctx)
    [all...]
vpx_decoder_compat.c 23 const char *vpx_dec_iface_name(vpx_dec_iface_t *iface)
25 return vpx_codec_iface_name((vpx_codec_iface_t *)iface);
45 vpx_dec_iface_t *iface,
49 (vpx_codec_iface_t *)iface,
62 vpx_dec_caps_t vpx_dec_get_caps(vpx_dec_iface_t *iface)
64 return vpx_codec_get_caps((vpx_codec_iface_t *)iface);
68 vpx_dec_err_t vpx_dec_peek_stream_info(vpx_dec_iface_t *iface,
73 return vpx_codec_peek_stream_info((vpx_codec_iface_t *)iface, data, data_sz,
131 vpx_dec_iface_t *iface,
135 (vpx_codec_iface_t *)iface,
    [all...]
  /external/wpa_supplicant_8/src/ap/
hostapd.c 38 static int hostapd_setup_encryption(char *iface, struct hostapd_data *hapd);
46 int (*cb)(struct hostapd_iface *iface,
53 ret = cb(interfaces->iface[i], ctx);
74 hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 1);
76 hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 0);
94 hostapd_setup_encryption(hapd->conf->iface, hapd);
107 wpa_printf(MSG_DEBUG, "Reconfigured interface %s", hapd->conf->iface);
111 int hostapd_reload_config(struct hostapd_iface *iface)
113 struct hostapd_data *hapd = iface->bss[0];
117 if (iface->interfaces == NULL |
1155 struct hostapd_iface **iface, *hapd_iface; local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/iface/
AttributeList.java 17 package com.android.dx.cf.iface;
Field.java 17 package com.android.dx.cf.iface;
Method.java 17 package com.android.dx.cf.iface;
  /external/libsepol/src/
interfaces.c 14 ocontext_t ** iface, const sepol_iface_t * record)
47 *iface = tmp_iface;
68 ocontext_t * iface, sepol_iface_t ** record)
71 char *name = iface->u.name;
72 context_struct_t *ifcon = &iface->context[0];
73 context_struct_t *msgcon = &iface->context[1];
172 ocontext_t *head, *prev, *c, *iface = NULL; local
177 if (iface_from_record(handle, policydb, &iface, data) < 0)
186 iface->next = c->next;
188 policydb->ocontexts[OCON_NETIF] = iface;
245 sepol_iface_t *iface = NULL; local
    [all...]
  /external/mesa3d/include/pixelflinger2/
pixelflinger2_interface.h 169 void (* CullFace)(GGLInterface_t * iface, GLenum mode);
170 void (* FrontFace)(GGLInterface_t * iface, GLenum mode);
171 void (* DepthRangef)(GGLInterface_t * iface, GLclampf zNear, GLclampf zFar);
172 void (* Viewport)(GGLInterface_t * iface, GLint x, GLint y, GLsizei width, GLsizei height);
173 void (* ViewportTransform)(const GGLInterface_t * iface, Vector4 * v);
176 void (* BlendColor)(GGLInterface_t * iface, GLclampf red, GLclampf green,
178 void (* BlendEquationSeparate)(GGLInterface_t * iface, GLenum modeRGB, GLenum modeAlpha);
179 void (* BlendFuncSeparate)(GGLInterface_t * iface, GLenum srcRGB, GLenum dstRGB,
181 void (* EnableDisable)(GGLInterface_t * iface, GLenum cap, GLboolean enable);
183 void (* DepthFunc)(GGLInterface_t * iface, GLenum func)
    [all...]
  /external/skia/tests/
GLInterfaceValidation.cpp 49 SkAutoTUnref<const GrGLInterface> iface; local
51 iface.reset(interfaceFactories[i].fFactory());
52 REPORTER_ASSERT(reporter, NULL != iface.get());
53 if (iface.get()) {
57 if (iface.get()->fBindingsExported & binding) {
58 REPORTER_ASSERT(reporter, iface.get()->validate(binding));
  /system/netd/
SecondaryTableController.cpp 52 int SecondaryTableController::findTableNumber(const char *iface) {
56 if (strncmp(iface, mInterfaceTable[i], IFNAMSIZ + 1) == 0) {
63 int SecondaryTableController::addRoute(SocketClient *cli, char *iface, char *dest, int prefix,
65 int tableIndex = findTableNumber(iface);
74 strncpy(mInterfaceTable[tableIndex], iface, IFNAMSIZ);
79 return modifyRoute(cli, ADD, iface, dest, prefix, gateway, tableIndex);
82 int SecondaryTableController::modifyRoute(SocketClient *cli, const char *action, char *iface,
89 IP_PATH, action, dest, prefix, iface, tableIndex+BASE_TABLE_NUMBER);
92 IP_PATH, action, dest, prefix, gateway, iface, tableIndex+BASE_TABLE_NUMBER);
97 IP_PATH, action, dest, prefix, gateway, iface, tableIndex+BASE_TABLE_NUMBER)
    [all...]
IdletimerController.cpp 55 * ndc idletimer add <iface> <timeout> <class label>
56 * ndc idletimer remove <iface> <timeout> <class label>
86 * Note that currently if the name of the iface is incorrect, iptables
173 int IdletimerController::modifyInterfaceIdletimer(IptOp op, const char *iface,
180 (op == IptOpAdd) ? 'A' : 'D', LOCAL_RAW_PREROUTING, iface, timeout, classLabel);
189 (op == IptOpAdd) ? 'A' : 'D', LOCAL_MANGLE_POSTROUTING, iface, timeout, classLabel);
196 int IdletimerController::addInterfaceIdletimer(const char *iface,
199 return modifyInterfaceIdletimer(IptOpAdd, iface, timeout, classLabel);
202 int IdletimerController::removeInterfaceIdletimer(const char *iface,
205 return modifyInterfaceIdletimer(IptOpDelete, iface, timeout, classLabel)
    [all...]
NetlinkHandler.cpp 57 const char *iface = evt->findParam("INTERFACE"); local
60 notifyInterfaceAdded(iface);
62 notifyInterfaceRemoved(iface);
67 notifyInterfaceLinkChanged(iface, true);
69 notifyInterfaceLinkChanged(iface, false);
74 const char *iface = evt->findParam("INTERFACE"); local
75 notifyQuotaLimitReached(alertName, iface);
98 snprintf(msg, sizeof(msg), "Iface added %s", name);
106 snprintf(msg, sizeof(msg), "Iface removed %s", name);
114 snprintf(msg, sizeof(msg), "Iface changed %s %s", name
    [all...]
  /external/libvpx/vpx/
vpx_decoder_compat.h 146 vpx_dec_iface_t *iface; /**< Interface pointers */ member in struct:__anon9809
165 * \param[in] iface Interface pointer
168 const char *vpx_dec_iface_name(vpx_dec_iface_t *iface) DEPRECATED;
225 * \param[in] iface Pointer to the algorithm interface to use.
234 vpx_dec_iface_t *iface,
236 #define vpx_dec_init(ctx, iface) \
237 vpx_dec_init_ver(ctx, iface, VPX_DECODER_ABI_VERSION)
258 * \param[in] iface Pointer to the algorithm interface
261 vpx_dec_caps_t vpx_dec_get_caps(vpx_dec_iface_t *iface) DEPRECATED;
270 * \param[in] iface Pointer to the algorithm interfac
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
main.c 138 struct wpa_interface *ifaces, *iface; local
149 iface = ifaces = os_zalloc(sizeof(struct wpa_interface));
163 iface->bridge_ifname = optarg;
169 iface->confname = optarg;
172 iface->ctrl_interface = optarg;
175 iface->driver = optarg;
203 iface->ifname = optarg;
219 iface->driver_param = optarg;
255 iface = os_realloc_array(ifaces, iface_count,
257 if (iface == NULL
    [all...]
  /frameworks/base/media/java/android/media/
RemoteDisplay.java 43 private native int nativeListen(String iface);
63 * @param iface The interface address and port in the form "x.x.x.x:y".
67 public static RemoteDisplay listen(String iface, Listener listener, Handler handler) {
68 if (iface == null) {
69 throw new IllegalArgumentException("iface must not be null");
79 display.startListening(iface);
105 private void startListening(String iface) {
106 mPtr = nativeListen(iface);
109 + "remote display connection on \"" + iface + "\"");
  /external/wpa_supplicant_6/wpa_supplicant/
main_winmain.c 31 struct wpa_interface *ifaces, *iface; local
44 iface = ifaces = os_zalloc(sizeof(struct wpa_interface));
49 iface->confname = "default";
50 iface->driver = "ndis";
51 iface->ifname = "";

Completed in 668 milliseconds

1 23 4 5 6 7 8 91011>>