Home
last modified time | relevance | path

Searched refs:location (Results 1 – 25 of 49) sorted by relevance

12

/device/lge/bullhead/sepolicy/
Dlocation.te2 type location, domain, domain_deprecated;
5 init_daemon_domain(location)
7 binder_use(location)
8 binder_call(location, per_mgr)
9 binder_call(location, system_server)
11 qmux_socket(location)
12 allow location system_server:unix_stream_socket { read write };
14 allow location location_data_file:dir rw_dir_perms;
15 allow location location_data_file:file create_file_perms;
16 allow location location_data_file:sock_file create_file_perms;
[all …]
Dsystem_server.te22 # For location
23 allow system_server location:unix_stream_socket connectto;
Dfile.te16 #location file types
/device/huawei/angler/sepolicy/
Dlocation.te1 type location, domain, domain_deprecated;
5 init_daemon_domain(location)
7 allow location location_exec:file rx_file_perms;
9 allow location self:capability { setuid setgid net_raw };
11 allow location self:socket create_socket_perms;
13 binder_use(location)
14 binder_call(location, system_server)
15 allow location sensorservice_service:service_manager find;
17 allow location system_server:unix_stream_socket { read write };
20 allow location sysfs_msm_subsys:dir r_dir_perms;
[all …]
/device/generic/goldfish/opengl/shared/OpenglCodecCommon/
DGLClientState.cpp77 void GLClientState::enable(int location, int state) in enable() argument
79 if (!validLocation(location)) { in enable()
83 m_states[location].enableDirty |= (state != m_states[location].enabled); in enable()
84 m_states[location].enabled = state; in enable()
87 void GLClientState::setState(int location, int size, GLenum type, GLboolean normalized, GLsizei str… in setState() argument
89 if (!validLocation(location)) { in setState()
92 m_states[location].size = size; in setState()
93 m_states[location].type = type; in setState()
94 m_states[location].stride = stride; in setState()
95 m_states[location].data = (void*)data; in setState()
[all …]
DGLClientState.h85 void enable(int location, int state);
86 …void setState(int location, int size, GLenum type, GLboolean normalized, GLsizei stride, const vo…
87 void setBufferObject(int location, GLuint id);
88 const VertexAttribState *getState(int location);
89 const VertexAttribState *getStateAndEnableDirty(int location, bool *enableChanged);
199 bool validLocation(int location) { return (location >= 0 && location < m_nLocations); } in validLocation() argument
DGLSharedGroup.h77 GLuint getIndexForLocation(GLint location);
78 GLenum getTypeForLocation(GLint location);
128 GLenum getProgramUniformType(GLuint program, GLint location);
DGLSharedGroup.cpp92 GLuint ProgramData::getIndexForLocation(GLint location) in getIndexForLocation() argument
98 GLint dist = location - m_Indexes[i].base; in getIndexForLocation()
108 GLenum ProgramData::getTypeForLocation(GLint location) in getTypeForLocation() argument
110 GLuint index = getIndexForLocation(location); in getTypeForLocation()
389 GLenum GLSharedGroup::getProgramUniformType(GLuint program, GLint location) in getProgramUniformType() argument
396 type = pData->getTypeForLocation(location); in getProgramUniformType()
/device/generic/goldfish/opengl/system/GLESv2_enc/
DGL2Encoder.h64 void getHostLocation(void *self, GLint location, GLint *hostLoc);
138 static void s_glGetUniformiv(void *self, GLuint program, GLint location , GLint *params);
141 static void s_glGetUniformfv(void *self, GLuint program, GLint location , GLfloat *params);
199 static void s_glUniform1f(void *self , GLint location, GLfloat x);
200 static void s_glUniform1fv(void *self , GLint location, GLsizei count, const GLfloat* v);
201 static void s_glUniform1i(void *self , GLint location, GLint x);
202 static void s_glUniform1iv(void *self , GLint location, GLsizei count, const GLint* v);
203 static void s_glUniform2f(void *self , GLint location, GLfloat x, GLfloat y);
204 static void s_glUniform2fv(void *self , GLint location, GLsizei count, const GLfloat* v);
205 static void s_glUniform2i(void *self , GLint location, GLint x, GLint y);
[all …]
DGL2Encoder.cpp826 GLint location; in s_glLinkProgram() local
831 location = ctx->m_glGetUniformLocation_enc(self, program, name); in s_glLinkProgram()
832 ctx->m_shared->setProgramIndexInfo(program, i, location, size, type, name); in s_glLinkProgram()
847 void GL2Encoder::s_glGetUniformiv(void *self, GLuint program, GLint location, GLint* params) in s_glGetUniformiv() argument
853 GLint hostLoc = ctx->m_shared->locationWARAppToHost(program, location); in s_glGetUniformiv()
857 void GL2Encoder::s_glGetUniformfv(void *self, GLuint program, GLint location, GLfloat* params) in s_glGetUniformfv() argument
863 GLint hostLoc = ctx->m_shared->locationWARAppToHost(program,location); in s_glGetUniformfv()
1035 void GL2Encoder::getHostLocation(void *self, GLint location, GLint *hostLoc) in getHostLocation() argument
1039 if (location == -1) { in getHostLocation()
1040 *hostLoc = location; in getHostLocation()
[all …]
Dgl2_entry.cpp83 void glGetUniformfv(GLuint program, GLint location, GLfloat* params);
84 void glGetUniformiv(GLuint program, GLint location, GLint* params);
120 void glUniform1f(GLint location, GLfloat x);
121 void glUniform1fv(GLint location, GLsizei count, const GLfloat* v);
122 void glUniform1i(GLint location, GLint x);
123 void glUniform1iv(GLint location, GLsizei count, const GLint* v);
124 void glUniform2f(GLint location, GLfloat x, GLfloat y);
125 void glUniform2fv(GLint location, GLsizei count, const GLfloat* v);
126 void glUniform2i(GLint location, GLint x, GLint y);
127 void glUniform2iv(GLint location, GLsizei count, const GLint* v);
[all …]
DGL2EncoderUtils.cpp36 GLenum uniformType(void * self, GLuint program, GLint location) in uniformType() argument
40 return ctx->shared()->getProgramUniformType(program, location); in uniformType()
DGL2EncoderUtils.h23 GLenum uniformType(void * self, GLuint program, GLint location);
Dgl2_enc.cpp2339 void glGetUniformfv_enc(void *self , GLuint program, GLint location, GLfloat* params) in glGetUniformfv_enc() argument
2347 const unsigned int __size_params = glSizeof(glesv2_enc::uniformType(self, program, location)); in glGetUniformfv_enc()
2359 memcpy(ptr, &location, 4); ptr += 4; in glGetUniformfv_enc()
2377 void glGetUniformiv_enc(void *self , GLuint program, GLint location, GLint* params) in glGetUniformiv_enc() argument
2385 const unsigned int __size_params = glSizeof(glesv2_enc::uniformType(self, program, location)); in glGetUniformiv_enc()
2397 memcpy(ptr, &location, 4); ptr += 4; in glGetUniformiv_enc()
3429 void glUniform1f_enc(void *self , GLint location, GLfloat x) in glUniform1f_enc() argument
3447 memcpy(ptr, &location, 4); ptr += 4; in glUniform1f_enc()
3455 void glUniform1fv_enc(void *self , GLint location, GLsizei count, const GLfloat* v) in glUniform1fv_enc() argument
3474 memcpy(ptr, &location, 4); ptr += 4; in glUniform1fv_enc()
[all …]
/device/google/contexthub/firmware/inc/
Dtoolchain.h46 #define PLACE_IN(loc, type, name) _Pragma(PRAGMA_HELPER(location,loc,)) type name
47 #define PLACE_IN_NAKED(loc, type, name) _Pragma(PRAGMA_HELPER(location,loc,)) __task type name
48 #define APP_ENTRY _Pragma(PRAGMA_HELPER(location,".internal_app_init",)) __root static const stru…
49 #define APP_ENTRY2 _Pragma(PRAGMA_HELPER(location,".app_init",)) __root static struct AppFuncs
/device/moto/shamu/sepolicy/
Dgsiffd.te7 # Write to /data/misc/location/gsiff/
11 # Write to /data/misc/location/quipc/
/device/google/accessory/arduino/USB_Host_Shield/
DMax_LCD.cpp242 void Max_LCD::createChar(uint8_t location, uint8_t charmap[]) { in createChar() argument
243 location &= 0x7; // we only have 8 locations 0-7 in createChar()
244 command(LCD_SETCGRAMADDR | (location << 3)); in createChar()
/device/sample/products/
Dlocation_overlay.mk22 PRODUCT_PACKAGE_OVERLAYS := device/sample/overlays/location
/device/huawei/angler/location/loc_api/loc_api_v02/
DLocApiV02.cpp1837 UlpLocation location; in reportPosition() local
1840 memset(&location, 0, sizeof (UlpLocation)); in reportPosition()
1841 location.size = sizeof(location); in reportPosition()
1857 location.gpsLocation.flags |= GPS_LOCATION_HAS_LAT_LONG; in reportPosition()
1858 location.gpsLocation.latitude = location_report_ptr->latitude; in reportPosition()
1859 location.gpsLocation.longitude = location_report_ptr->longitude; in reportPosition()
1864 location.gpsLocation.timestamp = location_report_ptr->timestampUtc; in reportPosition()
1870 location.gpsLocation.flags |= GPS_LOCATION_HAS_ALTITUDE; in reportPosition()
1871 location.gpsLocation.altitude = location_report_ptr->altitudeWrtEllipsoid; in reportPosition()
1878 location.gpsLocation.flags |= GPS_LOCATION_HAS_SPEED; in reportPosition()
[all …]
/device/lge/bullhead/location/loc_api/loc_api_v02/
DLocApiV02.cpp1837 UlpLocation location; in reportPosition() local
1840 memset(&location, 0, sizeof (UlpLocation)); in reportPosition()
1841 location.size = sizeof(location); in reportPosition()
1857 location.gpsLocation.flags |= GPS_LOCATION_HAS_LAT_LONG; in reportPosition()
1858 location.gpsLocation.latitude = location_report_ptr->latitude; in reportPosition()
1859 location.gpsLocation.longitude = location_report_ptr->longitude; in reportPosition()
1864 location.gpsLocation.timestamp = location_report_ptr->timestampUtc; in reportPosition()
1870 location.gpsLocation.flags |= GPS_LOCATION_HAS_ALTITUDE; in reportPosition()
1871 location.gpsLocation.altitude = location_report_ptr->altitudeWrtEllipsoid; in reportPosition()
1878 location.gpsLocation.flags |= GPS_LOCATION_HAS_SPEED; in reportPosition()
[all …]
/device/generic/armv7-a-neon/
Dmini_common.mk66 …frameworks/native/data/etc/android.hardware.location.gps.xml:system/etc/permissions/android.hardwa…
/device/moto/shamu/location/loc_api/loc_api_v02/
DLocApiV02.cpp1778 UlpLocation location; in reportPosition() local
1781 memset(&location, 0, sizeof (UlpLocation)); in reportPosition()
1782 location.size = sizeof(location); in reportPosition()
1798 location.gpsLocation.flags |= GPS_LOCATION_HAS_LAT_LONG; in reportPosition()
1799 location.gpsLocation.latitude = location_report_ptr->latitude; in reportPosition()
1800 location.gpsLocation.longitude = location_report_ptr->longitude; in reportPosition()
1805 location.gpsLocation.timestamp = location_report_ptr->timestampUtc; in reportPosition()
1811 location.gpsLocation.flags |= GPS_LOCATION_HAS_ALTITUDE; in reportPosition()
1812 location.gpsLocation.altitude = location_report_ptr->altitudeWrtEllipsoid; in reportPosition()
1819 location.gpsLocation.flags |= GPS_LOCATION_HAS_SPEED; in reportPosition()
[all …]
/device/google/dragon/
DCleanSpec.mk49 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/etc/permissions/android.hardware.location.gps.x…
/device/generic/qemu/
Dinit.ranchu.rc42 # enable Google-specific location features,
/device/huawei/angler/dataservices/
Dconfigure.ac18 [Specify the location of the sanitized Linux headers]),

12