/device/lge/mako/self-extractors/ |
files-by-owner.sh | 24 cat > $target_owner/staging/device-partial.mk << EOF 40 echo -n "# " >> $target_owner/staging/device-partial.mk 43 echo -n Broadcom >> $target_owner/staging/device-partial.mk 46 echo -n LGE >> $target_owner/staging/device-partial.mk 49 echo -n Qualcomm >> $target_owner/staging/device-partial.mk 52 echo " blob(s) necessary for Mako hardware" >> $target_owner/staging/device-partial.mk 53 echo "PRODUCT_COPY_FILES := \\" >> $target_owner/staging/device-partial.mk 81 echo " vendor/$target_owner/mako/proprietary/$(basename $file):$file:$target_owner \\" >> $target_owner/staging/device-partial.mk 87 echo >> $target_owner/staging/device-partial.mk 90 echo PRODUCT_PACKAGES := libacdbloader >> $target_owner/staging/device-partial.m [all...] |
generate-packages.sh | 231 cp -R $COMPANY/staging/* tmp/vendor/$COMPANY/$DEVICE || echo \ \ \ \ Error copying makefiles
|
/device/lge/hammerhead/self-extractors/ |
files-by-owner.sh | 24 cat > $target_owner/staging/device-partial.mk << EOF 40 echo -n "# " >> $target_owner/staging/device-partial.mk 43 echo -n Broadcom >> $target_owner/staging/device-partial.mk 46 echo -n LGE >> $target_owner/staging/device-partial.mk 49 echo -n Qualcomm >> $target_owner/staging/device-partial.mk 52 echo " blob(s) necessary for Hammerhead hardware" >> $target_owner/staging/device-partial.mk 53 echo "PRODUCT_COPY_FILES := \\" >> $target_owner/staging/device-partial.mk 81 echo " vendor/$target_owner/hammerhead/proprietary/$(basename $file):$file:$target_owner \\" >> $target_owner/staging/device-partial.mk 87 echo >> $target_owner/staging/device-partial.mk 90 true ; #echo PRODUCT_PACKAGES := libacdbloader >> $target_owner/staging/device-partial.m [all...] |
generate-packages.sh | 246 cp -R $COMPANY/staging/* tmp/vendor/$COMPANY/$DEVICE || echo \ \ \ \ Error copying makefiles
|
/device/asus/deb/self-extractors/ |
files-by-owner.sh | 24 cat > $target_owner/staging/device-partial.mk << EOF 40 echo -n "# " >> $target_owner/staging/device-partial.mk 43 echo -n Asus >> $target_owner/staging/device-partial.mk 46 echo -n Broadcom >> $target_owner/staging/device-partial.mk 49 echo -n Qualcomm >> $target_owner/staging/device-partial.mk 52 echo " blob(s) necessary for Deb hardware" >> $target_owner/staging/device-partial.mk 53 echo "PRODUCT_COPY_FILES := \\" >> $target_owner/staging/device-partial.mk 81 echo " vendor/$target_owner/deb/proprietary/$(basename $file):$file:$target_owner \\" >> $target_owner/staging/device-partial.mk 87 echo >> $target_owner/staging/device-partial.mk 90 echo PRODUCT_PACKAGES := libacdbloader tzapps.mdt >> $target_owner/staging/device-partial.m [all...] |
generate-packages.sh | 256 cp -R $COMPANY/staging/* tmp/vendor/$COMPANY/$DEVICE || echo \ \ \ \ Error copying makefiles
|
/device/asus/flo/self-extractors/ |
files-by-owner.sh | 24 cat > $target_owner/staging/device-partial.mk << EOF 40 echo -n "# " >> $target_owner/staging/device-partial.mk 43 echo -n Asus >> $target_owner/staging/device-partial.mk 46 echo -n Broadcom >> $target_owner/staging/device-partial.mk 49 echo -n Qualcomm >> $target_owner/staging/device-partial.mk 52 echo " blob(s) necessary for Flo hardware" >> $target_owner/staging/device-partial.mk 53 echo "PRODUCT_COPY_FILES := \\" >> $target_owner/staging/device-partial.mk 81 echo " vendor/$target_owner/flo/proprietary/$(basename $file):$file:$target_owner \\" >> $target_owner/staging/device-partial.mk 87 echo >> $target_owner/staging/device-partial.mk 90 echo PRODUCT_PACKAGES := libacdbloader tzapps.mdt >> $target_owner/staging/device-partial.m [all...] |
generate-packages.sh | 250 cp -R $COMPANY/staging/* tmp/vendor/$COMPANY/$DEVICE || echo \ \ \ \ Error copying makefiles
|
/external/chromium_org/native_client_sdk/src/tools/ |
create_html.py | 133 staging = os.path.dirname(nmf) 134 if not staging: 135 staging = '.' 136 cmd = [create_nmf, '-s', staging, '-o', nmf] + filenames
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
r600_buffer.c | 58 transfer->staging = NULL; 147 rtransfer->staging = (struct r600_resource*) 150 return rctx->ws->buffer_map(rtransfer->staging->cs_buf, rctx->cs, PIPE_TRANSFER_WRITE); 167 if (rtransfer->staging) { 171 /* Copy the staging buffer into the original one. */ 173 &rtransfer->staging->b.b, &box); 174 pipe_resource_reference((struct pipe_resource**)&rtransfer->staging, NULL); 204 /* Staging resources particpate in transfers and blits only
|
r600_resource.h | 35 struct r600_resource *staging; member in struct:r600_transfer 142 struct r600_texture **staging);
|
r600_texture.c | 34 /* Copy from a full GPU texture to a transfer's staging one. */ 40 ctx->resource_copy_region(ctx, &rtransfer->staging->b.b, 46 /* Copy from a transfer's staging texture to a full GPU one. */ 57 &rtransfer->staging->b.b, 562 struct r600_texture **staging) 566 struct r600_texture **flushed_depth_texture = staging ? 567 staging : &rtex->flushed_depth_texture; 569 if (!staging && rtex->flushed_depth_texture) 580 resource.usage = staging ? PIPE_USAGE_STAGING : PIPE_USAGE_STATIC; 584 if (staging) [all...] |
r600_blit.c | 132 struct r600_texture *staging, 139 struct r600_texture *flushed_depth_texture = staging ? 140 staging : texture->flushed_depth_texture; 145 if (!staging && !texture->dirty_level_mask) 173 if (!staging && !(texture->dirty_level_mask & (1 << level))) 218 if (!staging &&
|
/external/mesa3d/src/gallium/drivers/r600/ |
r600_buffer.c | 58 transfer->staging = NULL; 147 rtransfer->staging = (struct r600_resource*) 150 return rctx->ws->buffer_map(rtransfer->staging->cs_buf, rctx->cs, PIPE_TRANSFER_WRITE); 167 if (rtransfer->staging) { 171 /* Copy the staging buffer into the original one. */ 173 &rtransfer->staging->b.b, &box); 174 pipe_resource_reference((struct pipe_resource**)&rtransfer->staging, NULL); 204 /* Staging resources particpate in transfers and blits only
|
r600_resource.h | 35 struct r600_resource *staging; member in struct:r600_transfer 142 struct r600_texture **staging);
|
r600_texture.c | 34 /* Copy from a full GPU texture to a transfer's staging one. */ 40 ctx->resource_copy_region(ctx, &rtransfer->staging->b.b, 46 /* Copy from a transfer's staging texture to a full GPU one. */ 57 &rtransfer->staging->b.b, 562 struct r600_texture **staging) 566 struct r600_texture **flushed_depth_texture = staging ? 567 staging : &rtex->flushed_depth_texture; 569 if (!staging && rtex->flushed_depth_texture) 580 resource.usage = staging ? PIPE_USAGE_STAGING : PIPE_USAGE_STATIC; 584 if (staging) [all...] |
/external/chromium_org/ppapi/native_client/tests/nacl_browser/browser_dynamic_library/ |
nacl.scons | 20 # Allow resolving a URL to the toolchain/ directory (instead of staging).
|
/external/chromium_org/build/ |
install-build-deps.sh | 390 rm -rf "${tmp}/staging" 394 mkdir -p "'"${tmp}"'/staging/dpkg/DEBIAN" 395 cd "'"${tmp}"'/staging" 481 dpkg --build staging/dpkg .' 2>&1)"
|
/build/core/tasks/ |
sdk-addon.mk | 25 staging := $(intermediates)/$(addon_dir_leaf) macro 67 $(eval _dest := $(call append-path,$(staging),$(call word-colon,2,$(cf)))) \ 79 $(full_target): PRIVATE_STAGING_DIR := $(staging)
|
/external/chromium_org/ppapi/native_client/tests/ppapi_browser/extension_mime_handler/ |
nacl.scons | 28 # Copy the extension into place (as a subdir in the staging dir).
|
/external/chromium/build/ |
install-build-deps.sh | 395 rm -rf "${tmp}/staging" 399 mkdir -p "'"${tmp}"'/staging/dpkg/DEBIAN" 400 cd "'"${tmp}"'/staging" 486 dpkg --build staging/dpkg .' 2>&1)"
|
/device/asus/grouper/self-extractors/ |
generate-packages.sh | 206 cp -R $COMPANY/staging/* tmp/vendor/$COMPANY/$DEVICE || echo \ \ \ \ Error copying makefiles
|
/device/asus/tilapia/self-extractors/ |
generate-packages.sh | 185 cp -R $COMPANY/staging/* tmp/vendor/$COMPANY/$DEVICE || echo \ \ \ \ Error copying makefiles
|
/device/samsung/manta/self-extractors/ |
generate-packages.sh | 120 cp -R $COMPANY/staging/* tmp/vendor/$COMPANY/$DEVICE || echo \ \ \ \ Error copying makefiles
|
/build/core/ |
cleanbuild.mk | 106 # PRODUCT_OUT staging directory, things can get out of sync if different 202 # in the staging and emulator data partitions. 225 @echo "Deleted images and staging directories."
|