wandb 0.19.1__py3-none-musllinux_1_2_aarch64.whl
Sign up to get free protection for your applications and to get access to all the features.
- package_readme.md +97 -0
- wandb/__init__.py +246 -0
- wandb/__init__.pyi +1197 -0
- wandb/__main__.py +3 -0
- wandb/_globals.py +19 -0
- wandb/agents/__init__.py +0 -0
- wandb/agents/pyagent.py +363 -0
- wandb/analytics/__init__.py +3 -0
- wandb/analytics/sentry.py +263 -0
- wandb/apis/__init__.py +48 -0
- wandb/apis/attrs.py +51 -0
- wandb/apis/importers/__init__.py +1 -0
- wandb/apis/importers/internals/internal.py +385 -0
- wandb/apis/importers/internals/protocols.py +103 -0
- wandb/apis/importers/internals/util.py +78 -0
- wandb/apis/importers/mlflow.py +254 -0
- wandb/apis/importers/validation.py +108 -0
- wandb/apis/importers/wandb.py +1603 -0
- wandb/apis/internal.py +232 -0
- wandb/apis/normalize.py +73 -0
- wandb/apis/paginator.py +81 -0
- wandb/apis/public/__init__.py +34 -0
- wandb/apis/public/api.py +1387 -0
- wandb/apis/public/artifacts.py +1095 -0
- wandb/apis/public/const.py +4 -0
- wandb/apis/public/files.py +263 -0
- wandb/apis/public/history.py +149 -0
- wandb/apis/public/jobs.py +653 -0
- wandb/apis/public/projects.py +154 -0
- wandb/apis/public/query_generator.py +166 -0
- wandb/apis/public/reports.py +458 -0
- wandb/apis/public/runs.py +1012 -0
- wandb/apis/public/sweeps.py +240 -0
- wandb/apis/public/teams.py +198 -0
- wandb/apis/public/users.py +136 -0
- wandb/apis/public/utils.py +68 -0
- wandb/apis/reports/__init__.py +1 -0
- wandb/apis/reports/v1/__init__.py +8 -0
- wandb/apis/reports/v2/__init__.py +8 -0
- wandb/apis/workspaces/__init__.py +8 -0
- wandb/beta/workflows.py +288 -0
- wandb/bin/gpu_stats +0 -0
- wandb/bin/wandb-core +0 -0
- wandb/cli/__init__.py +0 -0
- wandb/cli/beta.py +178 -0
- wandb/cli/cli.py +2812 -0
- wandb/data_types.py +66 -0
- wandb/docker/__init__.py +343 -0
- wandb/docker/auth.py +435 -0
- wandb/docker/wandb-entrypoint.sh +33 -0
- wandb/docker/www_authenticate.py +94 -0
- wandb/env.py +513 -0
- wandb/errors/__init__.py +17 -0
- wandb/errors/errors.py +37 -0
- wandb/errors/links.py +73 -0
- wandb/errors/term.py +415 -0
- wandb/errors/util.py +57 -0
- wandb/errors/warnings.py +2 -0
- wandb/filesync/__init__.py +0 -0
- wandb/filesync/dir_watcher.py +403 -0
- wandb/filesync/stats.py +100 -0
- wandb/filesync/step_checksum.py +142 -0
- wandb/filesync/step_prepare.py +179 -0
- wandb/filesync/step_upload.py +287 -0
- wandb/filesync/upload_job.py +142 -0
- wandb/integration/__init__.py +0 -0
- wandb/integration/catboost/__init__.py +5 -0
- wandb/integration/catboost/catboost.py +178 -0
- wandb/integration/cohere/__init__.py +3 -0
- wandb/integration/cohere/cohere.py +21 -0
- wandb/integration/cohere/resolver.py +347 -0
- wandb/integration/diffusers/__init__.py +3 -0
- wandb/integration/diffusers/autologger.py +76 -0
- wandb/integration/diffusers/pipeline_resolver.py +50 -0
- wandb/integration/diffusers/resolvers/__init__.py +9 -0
- wandb/integration/diffusers/resolvers/multimodal.py +882 -0
- wandb/integration/diffusers/resolvers/utils.py +102 -0
- wandb/integration/fastai/__init__.py +245 -0
- wandb/integration/gym/__init__.py +99 -0
- wandb/integration/huggingface/__init__.py +3 -0
- wandb/integration/huggingface/huggingface.py +18 -0
- wandb/integration/huggingface/resolver.py +213 -0
- wandb/integration/keras/__init__.py +11 -0
- wandb/integration/keras/callbacks/__init__.py +5 -0
- wandb/integration/keras/callbacks/metrics_logger.py +129 -0
- wandb/integration/keras/callbacks/model_checkpoint.py +188 -0
- wandb/integration/keras/callbacks/tables_builder.py +228 -0
- wandb/integration/keras/keras.py +1089 -0
- wandb/integration/kfp/__init__.py +6 -0
- wandb/integration/kfp/helpers.py +28 -0
- wandb/integration/kfp/kfp_patch.py +334 -0
- wandb/integration/kfp/wandb_logging.py +182 -0
- wandb/integration/langchain/__init__.py +3 -0
- wandb/integration/langchain/wandb_tracer.py +48 -0
- wandb/integration/lightgbm/__init__.py +239 -0
- wandb/integration/lightning/__init__.py +0 -0
- wandb/integration/lightning/fabric/__init__.py +3 -0
- wandb/integration/lightning/fabric/logger.py +764 -0
- wandb/integration/metaflow/__init__.py +3 -0
- wandb/integration/metaflow/metaflow.py +383 -0
- wandb/integration/openai/__init__.py +3 -0
- wandb/integration/openai/fine_tuning.py +480 -0
- wandb/integration/openai/openai.py +22 -0
- wandb/integration/openai/resolver.py +240 -0
- wandb/integration/prodigy/__init__.py +3 -0
- wandb/integration/prodigy/prodigy.py +299 -0
- wandb/integration/sacred/__init__.py +117 -0
- wandb/integration/sagemaker/__init__.py +12 -0
- wandb/integration/sagemaker/auth.py +28 -0
- wandb/integration/sagemaker/config.py +49 -0
- wandb/integration/sagemaker/files.py +3 -0
- wandb/integration/sagemaker/resources.py +34 -0
- wandb/integration/sb3/__init__.py +3 -0
- wandb/integration/sb3/sb3.py +147 -0
- wandb/integration/sklearn/__init__.py +37 -0
- wandb/integration/sklearn/calculate/__init__.py +32 -0
- wandb/integration/sklearn/calculate/calibration_curves.py +125 -0
- wandb/integration/sklearn/calculate/class_proportions.py +68 -0
- wandb/integration/sklearn/calculate/confusion_matrix.py +93 -0
- wandb/integration/sklearn/calculate/decision_boundaries.py +40 -0
- wandb/integration/sklearn/calculate/elbow_curve.py +55 -0
- wandb/integration/sklearn/calculate/feature_importances.py +67 -0
- wandb/integration/sklearn/calculate/learning_curve.py +64 -0
- wandb/integration/sklearn/calculate/outlier_candidates.py +69 -0
- wandb/integration/sklearn/calculate/residuals.py +86 -0
- wandb/integration/sklearn/calculate/silhouette.py +118 -0
- wandb/integration/sklearn/calculate/summary_metrics.py +62 -0
- wandb/integration/sklearn/plot/__init__.py +35 -0
- wandb/integration/sklearn/plot/classifier.py +329 -0
- wandb/integration/sklearn/plot/clusterer.py +146 -0
- wandb/integration/sklearn/plot/regressor.py +121 -0
- wandb/integration/sklearn/plot/shared.py +91 -0
- wandb/integration/sklearn/utils.py +183 -0
- wandb/integration/tensorboard/__init__.py +10 -0
- wandb/integration/tensorboard/log.py +354 -0
- wandb/integration/tensorboard/monkeypatch.py +186 -0
- wandb/integration/tensorflow/__init__.py +5 -0
- wandb/integration/tensorflow/estimator_hook.py +54 -0
- wandb/integration/torch/__init__.py +0 -0
- wandb/integration/torch/wandb_torch.py +554 -0
- wandb/integration/ultralytics/__init__.py +11 -0
- wandb/integration/ultralytics/bbox_utils.py +215 -0
- wandb/integration/ultralytics/callback.py +524 -0
- wandb/integration/ultralytics/classification_utils.py +83 -0
- wandb/integration/ultralytics/mask_utils.py +202 -0
- wandb/integration/ultralytics/pose_utils.py +103 -0
- wandb/integration/xgboost/__init__.py +11 -0
- wandb/integration/xgboost/xgboost.py +189 -0
- wandb/integration/yolov8/__init__.py +0 -0
- wandb/integration/yolov8/yolov8.py +284 -0
- wandb/jupyter.py +513 -0
- wandb/mpmain/__init__.py +0 -0
- wandb/mpmain/__main__.py +1 -0
- wandb/old/__init__.py +0 -0
- wandb/old/core.py +53 -0
- wandb/old/settings.py +173 -0
- wandb/old/summary.py +440 -0
- wandb/plot/__init__.py +28 -0
- wandb/plot/bar.py +70 -0
- wandb/plot/confusion_matrix.py +181 -0
- wandb/plot/custom_chart.py +124 -0
- wandb/plot/histogram.py +65 -0
- wandb/plot/line.py +74 -0
- wandb/plot/line_series.py +176 -0
- wandb/plot/pr_curve.py +185 -0
- wandb/plot/roc_curve.py +163 -0
- wandb/plot/scatter.py +66 -0
- wandb/plot/utils.py +183 -0
- wandb/plot/viz.py +41 -0
- wandb/proto/__init__.py +0 -0
- wandb/proto/v3/__init__.py +0 -0
- wandb/proto/v3/wandb_base_pb2.py +55 -0
- wandb/proto/v3/wandb_internal_pb2.py +1658 -0
- wandb/proto/v3/wandb_server_pb2.py +228 -0
- wandb/proto/v3/wandb_settings_pb2.py +122 -0
- wandb/proto/v3/wandb_telemetry_pb2.py +106 -0
- wandb/proto/v4/__init__.py +0 -0
- wandb/proto/v4/wandb_base_pb2.py +30 -0
- wandb/proto/v4/wandb_internal_pb2.py +370 -0
- wandb/proto/v4/wandb_server_pb2.py +67 -0
- wandb/proto/v4/wandb_settings_pb2.py +47 -0
- wandb/proto/v4/wandb_telemetry_pb2.py +41 -0
- wandb/proto/v5/wandb_base_pb2.py +31 -0
- wandb/proto/v5/wandb_internal_pb2.py +371 -0
- wandb/proto/v5/wandb_server_pb2.py +68 -0
- wandb/proto/v5/wandb_settings_pb2.py +48 -0
- wandb/proto/v5/wandb_telemetry_pb2.py +42 -0
- wandb/proto/wandb_base_pb2.py +10 -0
- wandb/proto/wandb_deprecated.py +45 -0
- wandb/proto/wandb_generate_deprecated.py +30 -0
- wandb/proto/wandb_generate_proto.py +49 -0
- wandb/proto/wandb_internal_pb2.py +16 -0
- wandb/proto/wandb_server_pb2.py +10 -0
- wandb/proto/wandb_settings_pb2.py +10 -0
- wandb/proto/wandb_telemetry_pb2.py +10 -0
- wandb/py.typed +0 -0
- wandb/sdk/__init__.py +37 -0
- wandb/sdk/artifacts/__init__.py +0 -0
- wandb/sdk/artifacts/_validators.py +121 -0
- wandb/sdk/artifacts/artifact.py +2364 -0
- wandb/sdk/artifacts/artifact_download_logger.py +43 -0
- wandb/sdk/artifacts/artifact_file_cache.py +249 -0
- wandb/sdk/artifacts/artifact_instance_cache.py +17 -0
- wandb/sdk/artifacts/artifact_manifest.py +75 -0
- wandb/sdk/artifacts/artifact_manifest_entry.py +249 -0
- wandb/sdk/artifacts/artifact_manifests/__init__.py +0 -0
- wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py +92 -0
- wandb/sdk/artifacts/artifact_saver.py +265 -0
- wandb/sdk/artifacts/artifact_state.py +11 -0
- wandb/sdk/artifacts/artifact_ttl.py +7 -0
- wandb/sdk/artifacts/exceptions.py +57 -0
- wandb/sdk/artifacts/staging.py +25 -0
- wandb/sdk/artifacts/storage_handler.py +62 -0
- wandb/sdk/artifacts/storage_handlers/__init__.py +0 -0
- wandb/sdk/artifacts/storage_handlers/azure_handler.py +213 -0
- wandb/sdk/artifacts/storage_handlers/gcs_handler.py +224 -0
- wandb/sdk/artifacts/storage_handlers/http_handler.py +114 -0
- wandb/sdk/artifacts/storage_handlers/local_file_handler.py +139 -0
- wandb/sdk/artifacts/storage_handlers/multi_handler.py +56 -0
- wandb/sdk/artifacts/storage_handlers/s3_handler.py +298 -0
- wandb/sdk/artifacts/storage_handlers/tracking_handler.py +72 -0
- wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py +135 -0
- wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py +74 -0
- wandb/sdk/artifacts/storage_layout.py +6 -0
- wandb/sdk/artifacts/storage_policies/__init__.py +4 -0
- wandb/sdk/artifacts/storage_policies/register.py +1 -0
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +378 -0
- wandb/sdk/artifacts/storage_policy.py +72 -0
- wandb/sdk/backend/__init__.py +0 -0
- wandb/sdk/backend/backend.py +221 -0
- wandb/sdk/data_types/__init__.py +0 -0
- wandb/sdk/data_types/_dtypes.py +918 -0
- wandb/sdk/data_types/_private.py +10 -0
- wandb/sdk/data_types/audio.py +165 -0
- wandb/sdk/data_types/base_types/__init__.py +0 -0
- wandb/sdk/data_types/base_types/json_metadata.py +55 -0
- wandb/sdk/data_types/base_types/media.py +376 -0
- wandb/sdk/data_types/base_types/wb_value.py +282 -0
- wandb/sdk/data_types/bokeh.py +70 -0
- wandb/sdk/data_types/graph.py +405 -0
- wandb/sdk/data_types/helper_types/__init__.py +0 -0
- wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +305 -0
- wandb/sdk/data_types/helper_types/classes.py +159 -0
- wandb/sdk/data_types/helper_types/image_mask.py +241 -0
- wandb/sdk/data_types/histogram.py +94 -0
- wandb/sdk/data_types/html.py +115 -0
- wandb/sdk/data_types/image.py +847 -0
- wandb/sdk/data_types/molecule.py +241 -0
- wandb/sdk/data_types/object_3d.py +470 -0
- wandb/sdk/data_types/plotly.py +82 -0
- wandb/sdk/data_types/saved_model.py +445 -0
- wandb/sdk/data_types/table.py +1204 -0
- wandb/sdk/data_types/trace_tree.py +438 -0
- wandb/sdk/data_types/utils.py +228 -0
- wandb/sdk/data_types/video.py +268 -0
- wandb/sdk/integration_utils/__init__.py +0 -0
- wandb/sdk/integration_utils/auto_logging.py +232 -0
- wandb/sdk/integration_utils/data_logging.py +475 -0
- wandb/sdk/interface/__init__.py +0 -0
- wandb/sdk/interface/constants.py +4 -0
- wandb/sdk/interface/interface.py +1010 -0
- wandb/sdk/interface/interface_queue.py +53 -0
- wandb/sdk/interface/interface_relay.py +53 -0
- wandb/sdk/interface/interface_shared.py +546 -0
- wandb/sdk/interface/interface_sock.py +61 -0
- wandb/sdk/interface/message_future.py +27 -0
- wandb/sdk/interface/message_future_poll.py +50 -0
- wandb/sdk/interface/router.py +115 -0
- wandb/sdk/interface/router_queue.py +41 -0
- wandb/sdk/interface/router_relay.py +37 -0
- wandb/sdk/interface/router_sock.py +36 -0
- wandb/sdk/interface/summary_record.py +67 -0
- wandb/sdk/internal/__init__.py +0 -0
- wandb/sdk/internal/context.py +89 -0
- wandb/sdk/internal/datastore.py +297 -0
- wandb/sdk/internal/file_pusher.py +181 -0
- wandb/sdk/internal/file_stream.py +695 -0
- wandb/sdk/internal/flow_control.py +263 -0
- wandb/sdk/internal/handler.py +905 -0
- wandb/sdk/internal/internal.py +403 -0
- wandb/sdk/internal/internal_api.py +4587 -0
- wandb/sdk/internal/internal_util.py +97 -0
- wandb/sdk/internal/job_builder.py +638 -0
- wandb/sdk/internal/profiler.py +78 -0
- wandb/sdk/internal/progress.py +79 -0
- wandb/sdk/internal/run.py +25 -0
- wandb/sdk/internal/sample.py +70 -0
- wandb/sdk/internal/sender.py +1696 -0
- wandb/sdk/internal/sender_config.py +197 -0
- wandb/sdk/internal/settings_static.py +97 -0
- wandb/sdk/internal/system/__init__.py +0 -0
- wandb/sdk/internal/system/assets/__init__.py +25 -0
- wandb/sdk/internal/system/assets/aggregators.py +37 -0
- wandb/sdk/internal/system/assets/asset_registry.py +20 -0
- wandb/sdk/internal/system/assets/cpu.py +163 -0
- wandb/sdk/internal/system/assets/disk.py +210 -0
- wandb/sdk/internal/system/assets/gpu.py +416 -0
- wandb/sdk/internal/system/assets/gpu_amd.py +233 -0
- wandb/sdk/internal/system/assets/interfaces.py +205 -0
- wandb/sdk/internal/system/assets/ipu.py +177 -0
- wandb/sdk/internal/system/assets/memory.py +166 -0
- wandb/sdk/internal/system/assets/network.py +125 -0
- wandb/sdk/internal/system/assets/open_metrics.py +293 -0
- wandb/sdk/internal/system/assets/tpu.py +154 -0
- wandb/sdk/internal/system/assets/trainium.py +393 -0
- wandb/sdk/internal/system/env_probe_helpers.py +13 -0
- wandb/sdk/internal/system/system_info.py +250 -0
- wandb/sdk/internal/system/system_monitor.py +222 -0
- wandb/sdk/internal/tb_watcher.py +519 -0
- wandb/sdk/internal/thread_local_settings.py +18 -0
- wandb/sdk/internal/writer.py +204 -0
- wandb/sdk/launch/__init__.py +15 -0
- wandb/sdk/launch/_launch.py +331 -0
- wandb/sdk/launch/_launch_add.py +255 -0
- wandb/sdk/launch/_project_spec.py +566 -0
- wandb/sdk/launch/agent/__init__.py +5 -0
- wandb/sdk/launch/agent/agent.py +924 -0
- wandb/sdk/launch/agent/config.py +296 -0
- wandb/sdk/launch/agent/job_status_tracker.py +53 -0
- wandb/sdk/launch/agent/run_queue_item_file_saver.py +39 -0
- wandb/sdk/launch/builder/__init__.py +0 -0
- wandb/sdk/launch/builder/abstract.py +156 -0
- wandb/sdk/launch/builder/build.py +297 -0
- wandb/sdk/launch/builder/context_manager.py +235 -0
- wandb/sdk/launch/builder/docker_builder.py +177 -0
- wandb/sdk/launch/builder/kaniko_builder.py +594 -0
- wandb/sdk/launch/builder/noop.py +58 -0
- wandb/sdk/launch/builder/templates/_wandb_bootstrap.py +188 -0
- wandb/sdk/launch/builder/templates/dockerfile.py +92 -0
- wandb/sdk/launch/create_job.py +528 -0
- wandb/sdk/launch/environment/abstract.py +29 -0
- wandb/sdk/launch/environment/aws_environment.py +322 -0
- wandb/sdk/launch/environment/azure_environment.py +105 -0
- wandb/sdk/launch/environment/gcp_environment.py +335 -0
- wandb/sdk/launch/environment/local_environment.py +65 -0
- wandb/sdk/launch/errors.py +13 -0
- wandb/sdk/launch/git_reference.py +109 -0
- wandb/sdk/launch/inputs/files.py +148 -0
- wandb/sdk/launch/inputs/internal.py +315 -0
- wandb/sdk/launch/inputs/manage.py +113 -0
- wandb/sdk/launch/inputs/schema.py +39 -0
- wandb/sdk/launch/loader.py +249 -0
- wandb/sdk/launch/registry/abstract.py +48 -0
- wandb/sdk/launch/registry/anon.py +29 -0
- wandb/sdk/launch/registry/azure_container_registry.py +124 -0
- wandb/sdk/launch/registry/elastic_container_registry.py +192 -0
- wandb/sdk/launch/registry/google_artifact_registry.py +219 -0
- wandb/sdk/launch/registry/local_registry.py +65 -0
- wandb/sdk/launch/runner/__init__.py +0 -0
- wandb/sdk/launch/runner/abstract.py +185 -0
- wandb/sdk/launch/runner/kubernetes_monitor.py +472 -0
- wandb/sdk/launch/runner/kubernetes_runner.py +963 -0
- wandb/sdk/launch/runner/local_container.py +301 -0
- wandb/sdk/launch/runner/local_process.py +78 -0
- wandb/sdk/launch/runner/sagemaker_runner.py +426 -0
- wandb/sdk/launch/runner/vertex_runner.py +230 -0
- wandb/sdk/launch/sweeps/__init__.py +37 -0
- wandb/sdk/launch/sweeps/scheduler.py +740 -0
- wandb/sdk/launch/sweeps/scheduler_sweep.py +90 -0
- wandb/sdk/launch/sweeps/utils.py +316 -0
- wandb/sdk/launch/utils.py +747 -0
- wandb/sdk/launch/wandb_reference.py +138 -0
- wandb/sdk/lib/__init__.py +5 -0
- wandb/sdk/lib/apikey.py +269 -0
- wandb/sdk/lib/capped_dict.py +26 -0
- wandb/sdk/lib/config_util.py +101 -0
- wandb/sdk/lib/credentials.py +141 -0
- wandb/sdk/lib/deprecate.py +42 -0
- wandb/sdk/lib/disabled.py +29 -0
- wandb/sdk/lib/exit_hooks.py +54 -0
- wandb/sdk/lib/file_stream_utils.py +118 -0
- wandb/sdk/lib/filenames.py +64 -0
- wandb/sdk/lib/filesystem.py +372 -0
- wandb/sdk/lib/fsm.py +180 -0
- wandb/sdk/lib/gitlib.py +239 -0
- wandb/sdk/lib/gql_request.py +65 -0
- wandb/sdk/lib/handler_util.py +21 -0
- wandb/sdk/lib/hashutil.py +84 -0
- wandb/sdk/lib/import_hooks.py +275 -0
- wandb/sdk/lib/ipython.py +126 -0
- wandb/sdk/lib/json_util.py +80 -0
- wandb/sdk/lib/lazyloader.py +63 -0
- wandb/sdk/lib/mailbox.py +456 -0
- wandb/sdk/lib/module.py +78 -0
- wandb/sdk/lib/paths.py +106 -0
- wandb/sdk/lib/preinit.py +42 -0
- wandb/sdk/lib/printer.py +548 -0
- wandb/sdk/lib/progress.py +279 -0
- wandb/sdk/lib/proto_util.py +90 -0
- wandb/sdk/lib/redirect.py +845 -0
- wandb/sdk/lib/retry.py +289 -0
- wandb/sdk/lib/run_moment.py +72 -0
- wandb/sdk/lib/runid.py +12 -0
- wandb/sdk/lib/server.py +38 -0
- wandb/sdk/lib/service_connection.py +216 -0
- wandb/sdk/lib/service_token.py +94 -0
- wandb/sdk/lib/sock_client.py +290 -0
- wandb/sdk/lib/sparkline.py +44 -0
- wandb/sdk/lib/telemetry.py +100 -0
- wandb/sdk/lib/timed_input.py +133 -0
- wandb/sdk/lib/timer.py +19 -0
- wandb/sdk/service/__init__.py +0 -0
- wandb/sdk/service/_startup_debug.py +22 -0
- wandb/sdk/service/port_file.py +53 -0
- wandb/sdk/service/server.py +107 -0
- wandb/sdk/service/server_sock.py +274 -0
- wandb/sdk/service/service.py +242 -0
- wandb/sdk/service/streams.py +425 -0
- wandb/sdk/verify/__init__.py +0 -0
- wandb/sdk/verify/verify.py +501 -0
- wandb/sdk/wandb_alerts.py +12 -0
- wandb/sdk/wandb_config.py +322 -0
- wandb/sdk/wandb_helper.py +54 -0
- wandb/sdk/wandb_init.py +1313 -0
- wandb/sdk/wandb_login.py +339 -0
- wandb/sdk/wandb_metric.py +110 -0
- wandb/sdk/wandb_require.py +94 -0
- wandb/sdk/wandb_require_helpers.py +44 -0
- wandb/sdk/wandb_run.py +4066 -0
- wandb/sdk/wandb_settings.py +1309 -0
- wandb/sdk/wandb_setup.py +402 -0
- wandb/sdk/wandb_summary.py +150 -0
- wandb/sdk/wandb_sweep.py +119 -0
- wandb/sdk/wandb_sync.py +82 -0
- wandb/sdk/wandb_watch.py +150 -0
- wandb/sklearn.py +35 -0
- wandb/sync/__init__.py +3 -0
- wandb/sync/sync.py +442 -0
- wandb/trigger.py +29 -0
- wandb/util.py +1955 -0
- wandb/vendor/__init__.py +0 -0
- wandb/vendor/gql-0.2.0/setup.py +40 -0
- wandb/vendor/gql-0.2.0/tests/__init__.py +0 -0
- wandb/vendor/gql-0.2.0/tests/starwars/__init__.py +0 -0
- wandb/vendor/gql-0.2.0/tests/starwars/fixtures.py +96 -0
- wandb/vendor/gql-0.2.0/tests/starwars/schema.py +146 -0
- wandb/vendor/gql-0.2.0/tests/starwars/test_dsl.py +293 -0
- wandb/vendor/gql-0.2.0/tests/starwars/test_query.py +355 -0
- wandb/vendor/gql-0.2.0/tests/starwars/test_validation.py +171 -0
- wandb/vendor/gql-0.2.0/tests/test_client.py +31 -0
- wandb/vendor/gql-0.2.0/tests/test_transport.py +89 -0
- wandb/vendor/gql-0.2.0/wandb_gql/__init__.py +4 -0
- wandb/vendor/gql-0.2.0/wandb_gql/client.py +75 -0
- wandb/vendor/gql-0.2.0/wandb_gql/dsl.py +152 -0
- wandb/vendor/gql-0.2.0/wandb_gql/gql.py +10 -0
- wandb/vendor/gql-0.2.0/wandb_gql/transport/__init__.py +0 -0
- wandb/vendor/gql-0.2.0/wandb_gql/transport/http.py +6 -0
- wandb/vendor/gql-0.2.0/wandb_gql/transport/local_schema.py +15 -0
- wandb/vendor/gql-0.2.0/wandb_gql/transport/requests.py +46 -0
- wandb/vendor/gql-0.2.0/wandb_gql/utils.py +21 -0
- wandb/vendor/graphql-core-1.1/setup.py +86 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/__init__.py +287 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/error/__init__.py +6 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/error/base.py +42 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/error/format_error.py +11 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/error/located_error.py +29 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/error/syntax_error.py +36 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/execution/__init__.py +26 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/execution/base.py +311 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executor.py +398 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/__init__.py +0 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/asyncio.py +53 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/gevent.py +22 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/process.py +32 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/sync.py +7 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/thread.py +35 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/utils.py +6 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/__init__.py +0 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/executor.py +66 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/fragment.py +252 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/resolver.py +151 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/utils.py +7 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/execution/middleware.py +57 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/execution/values.py +145 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/graphql.py +60 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/language/__init__.py +0 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py +1349 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/language/base.py +19 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/language/lexer.py +435 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/language/location.py +30 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/language/parser.py +779 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/language/printer.py +193 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/language/source.py +18 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/language/visitor.py +222 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/language/visitor_meta.py +82 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/__init__.py +0 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/cached_property.py +17 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/contain_subset.py +28 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/default_ordered_dict.py +40 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/ordereddict.py +8 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/pair_set.py +43 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/version.py +78 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/type/__init__.py +67 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/type/definition.py +619 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/type/directives.py +132 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/type/introspection.py +440 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/type/scalars.py +131 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/type/schema.py +100 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/type/typemap.py +145 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/__init__.py +0 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/assert_valid_name.py +9 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/ast_from_value.py +65 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/ast_to_code.py +49 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/ast_to_dict.py +24 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/base.py +75 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/build_ast_schema.py +291 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/build_client_schema.py +250 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/concat_ast.py +9 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/extend_schema.py +357 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/get_field_def.py +27 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/get_operation_ast.py +21 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/introspection_query.py +90 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/is_valid_literal_value.py +67 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/is_valid_value.py +66 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/quoted_or_list.py +21 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/schema_printer.py +168 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/suggestion_list.py +56 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/type_comparators.py +69 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/type_from_ast.py +21 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/type_info.py +149 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/utils/value_from_ast.py +69 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/__init__.py +4 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/__init__.py +79 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/arguments_of_correct_type.py +24 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/base.py +8 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/default_values_of_correct_type.py +44 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/fields_on_correct_type.py +113 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/fragments_on_composite_types.py +33 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_argument_names.py +70 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_directives.py +97 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_fragment_names.py +19 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_type_names.py +43 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/lone_anonymous_operation.py +23 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_fragment_cycles.py +59 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_undefined_variables.py +36 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_unused_fragments.py +38 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_unused_variables.py +37 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/overlapping_fields_can_be_merged.py +529 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/possible_fragment_spreads.py +44 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/provided_non_null_arguments.py +46 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/scalar_leafs.py +33 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_argument_names.py +32 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_fragment_names.py +28 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_input_field_names.py +33 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_operation_names.py +31 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_variable_names.py +27 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/variables_are_input_types.py +21 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/variables_in_allowed_position.py +53 -0
- wandb/vendor/graphql-core-1.1/wandb_graphql/validation/validation.py +158 -0
- wandb/vendor/promise-2.3.0/conftest.py +30 -0
- wandb/vendor/promise-2.3.0/setup.py +64 -0
- wandb/vendor/promise-2.3.0/tests/__init__.py +0 -0
- wandb/vendor/promise-2.3.0/tests/conftest.py +8 -0
- wandb/vendor/promise-2.3.0/tests/test_awaitable.py +32 -0
- wandb/vendor/promise-2.3.0/tests/test_awaitable_35.py +47 -0
- wandb/vendor/promise-2.3.0/tests/test_benchmark.py +116 -0
- wandb/vendor/promise-2.3.0/tests/test_complex_threads.py +23 -0
- wandb/vendor/promise-2.3.0/tests/test_dataloader.py +452 -0
- wandb/vendor/promise-2.3.0/tests/test_dataloader_awaitable_35.py +99 -0
- wandb/vendor/promise-2.3.0/tests/test_dataloader_extra.py +65 -0
- wandb/vendor/promise-2.3.0/tests/test_extra.py +670 -0
- wandb/vendor/promise-2.3.0/tests/test_issues.py +132 -0
- wandb/vendor/promise-2.3.0/tests/test_promise_list.py +70 -0
- wandb/vendor/promise-2.3.0/tests/test_spec.py +584 -0
- wandb/vendor/promise-2.3.0/tests/test_thread_safety.py +115 -0
- wandb/vendor/promise-2.3.0/tests/utils.py +3 -0
- wandb/vendor/promise-2.3.0/wandb_promise/__init__.py +38 -0
- wandb/vendor/promise-2.3.0/wandb_promise/async_.py +135 -0
- wandb/vendor/promise-2.3.0/wandb_promise/compat.py +32 -0
- wandb/vendor/promise-2.3.0/wandb_promise/dataloader.py +326 -0
- wandb/vendor/promise-2.3.0/wandb_promise/iterate_promise.py +12 -0
- wandb/vendor/promise-2.3.0/wandb_promise/promise.py +848 -0
- wandb/vendor/promise-2.3.0/wandb_promise/promise_list.py +151 -0
- wandb/vendor/promise-2.3.0/wandb_promise/pyutils/__init__.py +0 -0
- wandb/vendor/promise-2.3.0/wandb_promise/pyutils/version.py +83 -0
- wandb/vendor/promise-2.3.0/wandb_promise/schedulers/__init__.py +0 -0
- wandb/vendor/promise-2.3.0/wandb_promise/schedulers/asyncio.py +22 -0
- wandb/vendor/promise-2.3.0/wandb_promise/schedulers/gevent.py +21 -0
- wandb/vendor/promise-2.3.0/wandb_promise/schedulers/immediate.py +27 -0
- wandb/vendor/promise-2.3.0/wandb_promise/schedulers/thread.py +18 -0
- wandb/vendor/promise-2.3.0/wandb_promise/utils.py +56 -0
- wandb/vendor/pygments/__init__.py +90 -0
- wandb/vendor/pygments/cmdline.py +568 -0
- wandb/vendor/pygments/console.py +74 -0
- wandb/vendor/pygments/filter.py +74 -0
- wandb/vendor/pygments/filters/__init__.py +350 -0
- wandb/vendor/pygments/formatter.py +95 -0
- wandb/vendor/pygments/formatters/__init__.py +153 -0
- wandb/vendor/pygments/formatters/_mapping.py +85 -0
- wandb/vendor/pygments/formatters/bbcode.py +109 -0
- wandb/vendor/pygments/formatters/html.py +851 -0
- wandb/vendor/pygments/formatters/img.py +600 -0
- wandb/vendor/pygments/formatters/irc.py +182 -0
- wandb/vendor/pygments/formatters/latex.py +482 -0
- wandb/vendor/pygments/formatters/other.py +160 -0
- wandb/vendor/pygments/formatters/rtf.py +147 -0
- wandb/vendor/pygments/formatters/svg.py +153 -0
- wandb/vendor/pygments/formatters/terminal.py +136 -0
- wandb/vendor/pygments/formatters/terminal256.py +309 -0
- wandb/vendor/pygments/lexer.py +871 -0
- wandb/vendor/pygments/lexers/__init__.py +329 -0
- wandb/vendor/pygments/lexers/_asy_builtins.py +1645 -0
- wandb/vendor/pygments/lexers/_cl_builtins.py +232 -0
- wandb/vendor/pygments/lexers/_cocoa_builtins.py +72 -0
- wandb/vendor/pygments/lexers/_csound_builtins.py +1346 -0
- wandb/vendor/pygments/lexers/_lasso_builtins.py +5327 -0
- wandb/vendor/pygments/lexers/_lua_builtins.py +295 -0
- wandb/vendor/pygments/lexers/_mapping.py +500 -0
- wandb/vendor/pygments/lexers/_mql_builtins.py +1172 -0
- wandb/vendor/pygments/lexers/_openedge_builtins.py +2547 -0
- wandb/vendor/pygments/lexers/_php_builtins.py +4756 -0
- wandb/vendor/pygments/lexers/_postgres_builtins.py +621 -0
- wandb/vendor/pygments/lexers/_scilab_builtins.py +3094 -0
- wandb/vendor/pygments/lexers/_sourcemod_builtins.py +1163 -0
- wandb/vendor/pygments/lexers/_stan_builtins.py +532 -0
- wandb/vendor/pygments/lexers/_stata_builtins.py +419 -0
- wandb/vendor/pygments/lexers/_tsql_builtins.py +1004 -0
- wandb/vendor/pygments/lexers/_vim_builtins.py +1939 -0
- wandb/vendor/pygments/lexers/actionscript.py +240 -0
- wandb/vendor/pygments/lexers/agile.py +24 -0
- wandb/vendor/pygments/lexers/algebra.py +221 -0
- wandb/vendor/pygments/lexers/ambient.py +76 -0
- wandb/vendor/pygments/lexers/ampl.py +87 -0
- wandb/vendor/pygments/lexers/apl.py +101 -0
- wandb/vendor/pygments/lexers/archetype.py +318 -0
- wandb/vendor/pygments/lexers/asm.py +641 -0
- wandb/vendor/pygments/lexers/automation.py +374 -0
- wandb/vendor/pygments/lexers/basic.py +500 -0
- wandb/vendor/pygments/lexers/bibtex.py +160 -0
- wandb/vendor/pygments/lexers/business.py +612 -0
- wandb/vendor/pygments/lexers/c_cpp.py +252 -0
- wandb/vendor/pygments/lexers/c_like.py +541 -0
- wandb/vendor/pygments/lexers/capnproto.py +78 -0
- wandb/vendor/pygments/lexers/chapel.py +102 -0
- wandb/vendor/pygments/lexers/clean.py +288 -0
- wandb/vendor/pygments/lexers/compiled.py +34 -0
- wandb/vendor/pygments/lexers/configs.py +833 -0
- wandb/vendor/pygments/lexers/console.py +114 -0
- wandb/vendor/pygments/lexers/crystal.py +393 -0
- wandb/vendor/pygments/lexers/csound.py +366 -0
- wandb/vendor/pygments/lexers/css.py +689 -0
- wandb/vendor/pygments/lexers/d.py +251 -0
- wandb/vendor/pygments/lexers/dalvik.py +125 -0
- wandb/vendor/pygments/lexers/data.py +555 -0
- wandb/vendor/pygments/lexers/diff.py +165 -0
- wandb/vendor/pygments/lexers/dotnet.py +691 -0
- wandb/vendor/pygments/lexers/dsls.py +878 -0
- wandb/vendor/pygments/lexers/dylan.py +289 -0
- wandb/vendor/pygments/lexers/ecl.py +125 -0
- wandb/vendor/pygments/lexers/eiffel.py +65 -0
- wandb/vendor/pygments/lexers/elm.py +121 -0
- wandb/vendor/pygments/lexers/erlang.py +533 -0
- wandb/vendor/pygments/lexers/esoteric.py +277 -0
- wandb/vendor/pygments/lexers/ezhil.py +69 -0
- wandb/vendor/pygments/lexers/factor.py +344 -0
- wandb/vendor/pygments/lexers/fantom.py +250 -0
- wandb/vendor/pygments/lexers/felix.py +273 -0
- wandb/vendor/pygments/lexers/forth.py +177 -0
- wandb/vendor/pygments/lexers/fortran.py +205 -0
- wandb/vendor/pygments/lexers/foxpro.py +428 -0
- wandb/vendor/pygments/lexers/functional.py +21 -0
- wandb/vendor/pygments/lexers/go.py +101 -0
- wandb/vendor/pygments/lexers/grammar_notation.py +213 -0
- wandb/vendor/pygments/lexers/graph.py +80 -0
- wandb/vendor/pygments/lexers/graphics.py +553 -0
- wandb/vendor/pygments/lexers/haskell.py +843 -0
- wandb/vendor/pygments/lexers/haxe.py +936 -0
- wandb/vendor/pygments/lexers/hdl.py +382 -0
- wandb/vendor/pygments/lexers/hexdump.py +103 -0
- wandb/vendor/pygments/lexers/html.py +602 -0
- wandb/vendor/pygments/lexers/idl.py +270 -0
- wandb/vendor/pygments/lexers/igor.py +288 -0
- wandb/vendor/pygments/lexers/inferno.py +96 -0
- wandb/vendor/pygments/lexers/installers.py +322 -0
- wandb/vendor/pygments/lexers/int_fiction.py +1343 -0
- wandb/vendor/pygments/lexers/iolang.py +63 -0
- wandb/vendor/pygments/lexers/j.py +146 -0
- wandb/vendor/pygments/lexers/javascript.py +1525 -0
- wandb/vendor/pygments/lexers/julia.py +333 -0
- wandb/vendor/pygments/lexers/jvm.py +1573 -0
- wandb/vendor/pygments/lexers/lisp.py +2621 -0
- wandb/vendor/pygments/lexers/make.py +202 -0
- wandb/vendor/pygments/lexers/markup.py +595 -0
- wandb/vendor/pygments/lexers/math.py +21 -0
- wandb/vendor/pygments/lexers/matlab.py +663 -0
- wandb/vendor/pygments/lexers/ml.py +769 -0
- wandb/vendor/pygments/lexers/modeling.py +358 -0
- wandb/vendor/pygments/lexers/modula2.py +1561 -0
- wandb/vendor/pygments/lexers/monte.py +204 -0
- wandb/vendor/pygments/lexers/ncl.py +894 -0
- wandb/vendor/pygments/lexers/nimrod.py +159 -0
- wandb/vendor/pygments/lexers/nit.py +64 -0
- wandb/vendor/pygments/lexers/nix.py +136 -0
- wandb/vendor/pygments/lexers/oberon.py +105 -0
- wandb/vendor/pygments/lexers/objective.py +504 -0
- wandb/vendor/pygments/lexers/ooc.py +85 -0
- wandb/vendor/pygments/lexers/other.py +41 -0
- wandb/vendor/pygments/lexers/parasail.py +79 -0
- wandb/vendor/pygments/lexers/parsers.py +835 -0
- wandb/vendor/pygments/lexers/pascal.py +644 -0
- wandb/vendor/pygments/lexers/pawn.py +199 -0
- wandb/vendor/pygments/lexers/perl.py +620 -0
- wandb/vendor/pygments/lexers/php.py +267 -0
- wandb/vendor/pygments/lexers/praat.py +294 -0
- wandb/vendor/pygments/lexers/prolog.py +306 -0
- wandb/vendor/pygments/lexers/python.py +939 -0
- wandb/vendor/pygments/lexers/qvt.py +152 -0
- wandb/vendor/pygments/lexers/r.py +453 -0
- wandb/vendor/pygments/lexers/rdf.py +270 -0
- wandb/vendor/pygments/lexers/rebol.py +431 -0
- wandb/vendor/pygments/lexers/resource.py +85 -0
- wandb/vendor/pygments/lexers/rnc.py +67 -0
- wandb/vendor/pygments/lexers/roboconf.py +82 -0
- wandb/vendor/pygments/lexers/robotframework.py +560 -0
- wandb/vendor/pygments/lexers/ruby.py +519 -0
- wandb/vendor/pygments/lexers/rust.py +220 -0
- wandb/vendor/pygments/lexers/sas.py +228 -0
- wandb/vendor/pygments/lexers/scripting.py +1222 -0
- wandb/vendor/pygments/lexers/shell.py +794 -0
- wandb/vendor/pygments/lexers/smalltalk.py +195 -0
- wandb/vendor/pygments/lexers/smv.py +79 -0
- wandb/vendor/pygments/lexers/snobol.py +83 -0
- wandb/vendor/pygments/lexers/special.py +103 -0
- wandb/vendor/pygments/lexers/sql.py +681 -0
- wandb/vendor/pygments/lexers/stata.py +108 -0
- wandb/vendor/pygments/lexers/supercollider.py +90 -0
- wandb/vendor/pygments/lexers/tcl.py +145 -0
- wandb/vendor/pygments/lexers/templates.py +2283 -0
- wandb/vendor/pygments/lexers/testing.py +207 -0
- wandb/vendor/pygments/lexers/text.py +25 -0
- wandb/vendor/pygments/lexers/textedit.py +169 -0
- wandb/vendor/pygments/lexers/textfmts.py +297 -0
- wandb/vendor/pygments/lexers/theorem.py +458 -0
- wandb/vendor/pygments/lexers/trafficscript.py +54 -0
- wandb/vendor/pygments/lexers/typoscript.py +226 -0
- wandb/vendor/pygments/lexers/urbi.py +133 -0
- wandb/vendor/pygments/lexers/varnish.py +190 -0
- wandb/vendor/pygments/lexers/verification.py +111 -0
- wandb/vendor/pygments/lexers/web.py +24 -0
- wandb/vendor/pygments/lexers/webmisc.py +988 -0
- wandb/vendor/pygments/lexers/whiley.py +116 -0
- wandb/vendor/pygments/lexers/x10.py +69 -0
- wandb/vendor/pygments/modeline.py +44 -0
- wandb/vendor/pygments/plugin.py +68 -0
- wandb/vendor/pygments/regexopt.py +92 -0
- wandb/vendor/pygments/scanner.py +105 -0
- wandb/vendor/pygments/sphinxext.py +158 -0
- wandb/vendor/pygments/style.py +155 -0
- wandb/vendor/pygments/styles/__init__.py +80 -0
- wandb/vendor/pygments/styles/abap.py +29 -0
- wandb/vendor/pygments/styles/algol.py +63 -0
- wandb/vendor/pygments/styles/algol_nu.py +63 -0
- wandb/vendor/pygments/styles/arduino.py +98 -0
- wandb/vendor/pygments/styles/autumn.py +65 -0
- wandb/vendor/pygments/styles/borland.py +51 -0
- wandb/vendor/pygments/styles/bw.py +49 -0
- wandb/vendor/pygments/styles/colorful.py +81 -0
- wandb/vendor/pygments/styles/default.py +73 -0
- wandb/vendor/pygments/styles/emacs.py +72 -0
- wandb/vendor/pygments/styles/friendly.py +72 -0
- wandb/vendor/pygments/styles/fruity.py +42 -0
- wandb/vendor/pygments/styles/igor.py +29 -0
- wandb/vendor/pygments/styles/lovelace.py +97 -0
- wandb/vendor/pygments/styles/manni.py +75 -0
- wandb/vendor/pygments/styles/monokai.py +106 -0
- wandb/vendor/pygments/styles/murphy.py +80 -0
- wandb/vendor/pygments/styles/native.py +65 -0
- wandb/vendor/pygments/styles/paraiso_dark.py +125 -0
- wandb/vendor/pygments/styles/paraiso_light.py +125 -0
- wandb/vendor/pygments/styles/pastie.py +75 -0
- wandb/vendor/pygments/styles/perldoc.py +69 -0
- wandb/vendor/pygments/styles/rainbow_dash.py +89 -0
- wandb/vendor/pygments/styles/rrt.py +33 -0
- wandb/vendor/pygments/styles/sas.py +44 -0
- wandb/vendor/pygments/styles/stata.py +40 -0
- wandb/vendor/pygments/styles/tango.py +141 -0
- wandb/vendor/pygments/styles/trac.py +63 -0
- wandb/vendor/pygments/styles/vim.py +63 -0
- wandb/vendor/pygments/styles/vs.py +38 -0
- wandb/vendor/pygments/styles/xcode.py +51 -0
- wandb/vendor/pygments/token.py +213 -0
- wandb/vendor/pygments/unistring.py +217 -0
- wandb/vendor/pygments/util.py +388 -0
- wandb/vendor/pynvml/__init__.py +0 -0
- wandb/vendor/pynvml/pynvml.py +4779 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/__init__.py +17 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/events.py +615 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/__init__.py +98 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/api.py +369 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/fsevents.py +172 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/fsevents2.py +239 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/inotify.py +218 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/inotify_buffer.py +81 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/inotify_c.py +575 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/kqueue.py +730 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/polling.py +145 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/read_directory_changes.py +133 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/winapi.py +348 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/patterns.py +265 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/tricks/__init__.py +174 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/__init__.py +151 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/bricks.py +249 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/compat.py +29 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/decorators.py +198 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/delayed_queue.py +88 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/dirsnapshot.py +293 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/echo.py +157 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/event_backport.py +41 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py +40 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py +57 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py +64 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py +123 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/version.py +28 -0
- wandb/vendor/watchdog_0_9_0/wandb_watchdog/watchmedo.py +577 -0
- wandb/wandb_agent.py +588 -0
- wandb/wandb_controller.py +719 -0
- wandb/wandb_run.py +9 -0
- wandb-0.19.1.dist-info/METADATA +223 -0
- wandb-0.19.1.dist-info/RECORD +822 -0
- wandb-0.19.1.dist-info/WHEEL +5 -0
- wandb-0.19.1.dist-info/entry_points.txt +3 -0
- wandb-0.19.1.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,4756 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
"""
|
3
|
+
pygments.lexers._php_builtins
|
4
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
5
|
+
|
6
|
+
This file loads the function names and their modules from the
|
7
|
+
php webpage and generates itself.
|
8
|
+
|
9
|
+
Do not alter the MODULES dict by hand!
|
10
|
+
|
11
|
+
WARNING: the generation transfers quite much data over your
|
12
|
+
internet connection. don't run that at home, use
|
13
|
+
a server ;-)
|
14
|
+
|
15
|
+
:copyright: Copyright 2006-2017 by the Pygments team, see AUTHORS.
|
16
|
+
:license: BSD, see LICENSE for details.
|
17
|
+
"""
|
18
|
+
|
19
|
+
from __future__ import print_function
|
20
|
+
|
21
|
+
MODULES = {'.NET': ('dotnet_load',),
|
22
|
+
'APC': ('apc_add',
|
23
|
+
'apc_bin_dump',
|
24
|
+
'apc_bin_dumpfile',
|
25
|
+
'apc_bin_load',
|
26
|
+
'apc_bin_loadfile',
|
27
|
+
'apc_cache_info',
|
28
|
+
'apc_cas',
|
29
|
+
'apc_clear_cache',
|
30
|
+
'apc_compile_file',
|
31
|
+
'apc_dec',
|
32
|
+
'apc_define_constants',
|
33
|
+
'apc_delete_file',
|
34
|
+
'apc_delete',
|
35
|
+
'apc_exists',
|
36
|
+
'apc_fetch',
|
37
|
+
'apc_inc',
|
38
|
+
'apc_load_constants',
|
39
|
+
'apc_sma_info',
|
40
|
+
'apc_store'),
|
41
|
+
'APD': ('apd_breakpoint',
|
42
|
+
'apd_callstack',
|
43
|
+
'apd_clunk',
|
44
|
+
'apd_continue',
|
45
|
+
'apd_croak',
|
46
|
+
'apd_dump_function_table',
|
47
|
+
'apd_dump_persistent_resources',
|
48
|
+
'apd_dump_regular_resources',
|
49
|
+
'apd_echo',
|
50
|
+
'apd_get_active_symbols',
|
51
|
+
'apd_set_pprof_trace',
|
52
|
+
'apd_set_session_trace_socket',
|
53
|
+
'apd_set_session_trace',
|
54
|
+
'apd_set_session',
|
55
|
+
'override_function',
|
56
|
+
'rename_function'),
|
57
|
+
'Aliases and deprecated Mysqli': ('mysqli_bind_param',
|
58
|
+
'mysqli_bind_result',
|
59
|
+
'mysqli_client_encoding',
|
60
|
+
'mysqli_connect',
|
61
|
+
'mysqli_disable_rpl_parse',
|
62
|
+
'mysqli_enable_reads_from_master',
|
63
|
+
'mysqli_enable_rpl_parse',
|
64
|
+
'mysqli_escape_string',
|
65
|
+
'mysqli_execute',
|
66
|
+
'mysqli_fetch',
|
67
|
+
'mysqli_get_cache_stats',
|
68
|
+
'mysqli_get_metadata',
|
69
|
+
'mysqli_master_query',
|
70
|
+
'mysqli_param_count',
|
71
|
+
'mysqli_report',
|
72
|
+
'mysqli_rpl_parse_enabled',
|
73
|
+
'mysqli_rpl_probe',
|
74
|
+
'mysqli_send_long_data',
|
75
|
+
'mysqli_slave_query'),
|
76
|
+
'Apache': ('apache_child_terminate',
|
77
|
+
'apache_get_modules',
|
78
|
+
'apache_get_version',
|
79
|
+
'apache_getenv',
|
80
|
+
'apache_lookup_uri',
|
81
|
+
'apache_note',
|
82
|
+
'apache_request_headers',
|
83
|
+
'apache_reset_timeout',
|
84
|
+
'apache_response_headers',
|
85
|
+
'apache_setenv',
|
86
|
+
'getallheaders',
|
87
|
+
'virtual'),
|
88
|
+
'Array': ('array_change_key_case',
|
89
|
+
'array_chunk',
|
90
|
+
'array_column',
|
91
|
+
'array_combine',
|
92
|
+
'array_count_values',
|
93
|
+
'array_diff_assoc',
|
94
|
+
'array_diff_key',
|
95
|
+
'array_diff_uassoc',
|
96
|
+
'array_diff_ukey',
|
97
|
+
'array_diff',
|
98
|
+
'array_fill_keys',
|
99
|
+
'array_fill',
|
100
|
+
'array_filter',
|
101
|
+
'array_flip',
|
102
|
+
'array_intersect_assoc',
|
103
|
+
'array_intersect_key',
|
104
|
+
'array_intersect_uassoc',
|
105
|
+
'array_intersect_ukey',
|
106
|
+
'array_intersect',
|
107
|
+
'array_key_exists',
|
108
|
+
'array_keys',
|
109
|
+
'array_map',
|
110
|
+
'array_merge_recursive',
|
111
|
+
'array_merge',
|
112
|
+
'array_multisort',
|
113
|
+
'array_pad',
|
114
|
+
'array_pop',
|
115
|
+
'array_product',
|
116
|
+
'array_push',
|
117
|
+
'array_rand',
|
118
|
+
'array_reduce',
|
119
|
+
'array_replace_recursive',
|
120
|
+
'array_replace',
|
121
|
+
'array_reverse',
|
122
|
+
'array_search',
|
123
|
+
'array_shift',
|
124
|
+
'array_slice',
|
125
|
+
'array_splice',
|
126
|
+
'array_sum',
|
127
|
+
'array_udiff_assoc',
|
128
|
+
'array_udiff_uassoc',
|
129
|
+
'array_udiff',
|
130
|
+
'array_uintersect_assoc',
|
131
|
+
'array_uintersect_uassoc',
|
132
|
+
'array_uintersect',
|
133
|
+
'array_unique',
|
134
|
+
'array_unshift',
|
135
|
+
'array_values',
|
136
|
+
'array_walk_recursive',
|
137
|
+
'array_walk',
|
138
|
+
'array',
|
139
|
+
'arsort',
|
140
|
+
'asort',
|
141
|
+
'compact',
|
142
|
+
'count',
|
143
|
+
'current',
|
144
|
+
'each',
|
145
|
+
'end',
|
146
|
+
'extract',
|
147
|
+
'in_array',
|
148
|
+
'key_exists',
|
149
|
+
'key',
|
150
|
+
'krsort',
|
151
|
+
'ksort',
|
152
|
+
'list',
|
153
|
+
'natcasesort',
|
154
|
+
'natsort',
|
155
|
+
'next',
|
156
|
+
'pos',
|
157
|
+
'prev',
|
158
|
+
'range',
|
159
|
+
'reset',
|
160
|
+
'rsort',
|
161
|
+
'shuffle',
|
162
|
+
'sizeof',
|
163
|
+
'sort',
|
164
|
+
'uasort',
|
165
|
+
'uksort',
|
166
|
+
'usort'),
|
167
|
+
'BBCode': ('bbcode_add_element',
|
168
|
+
'bbcode_add_smiley',
|
169
|
+
'bbcode_create',
|
170
|
+
'bbcode_destroy',
|
171
|
+
'bbcode_parse',
|
172
|
+
'bbcode_set_arg_parser',
|
173
|
+
'bbcode_set_flags'),
|
174
|
+
'BC Math': ('bcadd',
|
175
|
+
'bccomp',
|
176
|
+
'bcdiv',
|
177
|
+
'bcmod',
|
178
|
+
'bcmul',
|
179
|
+
'bcpow',
|
180
|
+
'bcpowmod',
|
181
|
+
'bcscale',
|
182
|
+
'bcsqrt',
|
183
|
+
'bcsub'),
|
184
|
+
'Blenc': ('blenc_encrypt',),
|
185
|
+
'Bzip2': ('bzclose',
|
186
|
+
'bzcompress',
|
187
|
+
'bzdecompress',
|
188
|
+
'bzerrno',
|
189
|
+
'bzerror',
|
190
|
+
'bzerrstr',
|
191
|
+
'bzflush',
|
192
|
+
'bzopen',
|
193
|
+
'bzread',
|
194
|
+
'bzwrite'),
|
195
|
+
'COM': ('com_addref',
|
196
|
+
'com_create_guid',
|
197
|
+
'com_event_sink',
|
198
|
+
'com_get_active_object',
|
199
|
+
'com_get',
|
200
|
+
'com_invoke',
|
201
|
+
'com_isenum',
|
202
|
+
'com_load_typelib',
|
203
|
+
'com_load',
|
204
|
+
'com_message_pump',
|
205
|
+
'com_print_typeinfo',
|
206
|
+
'com_propget',
|
207
|
+
'com_propput',
|
208
|
+
'com_propset',
|
209
|
+
'com_release',
|
210
|
+
'com_set',
|
211
|
+
'variant_abs',
|
212
|
+
'variant_add',
|
213
|
+
'variant_and',
|
214
|
+
'variant_cast',
|
215
|
+
'variant_cat',
|
216
|
+
'variant_cmp',
|
217
|
+
'variant_date_from_timestamp',
|
218
|
+
'variant_date_to_timestamp',
|
219
|
+
'variant_div',
|
220
|
+
'variant_eqv',
|
221
|
+
'variant_fix',
|
222
|
+
'variant_get_type',
|
223
|
+
'variant_idiv',
|
224
|
+
'variant_imp',
|
225
|
+
'variant_int',
|
226
|
+
'variant_mod',
|
227
|
+
'variant_mul',
|
228
|
+
'variant_neg',
|
229
|
+
'variant_not',
|
230
|
+
'variant_or',
|
231
|
+
'variant_pow',
|
232
|
+
'variant_round',
|
233
|
+
'variant_set_type',
|
234
|
+
'variant_set',
|
235
|
+
'variant_sub',
|
236
|
+
'variant_xor'),
|
237
|
+
'CUBRID': ('cubrid_bind',
|
238
|
+
'cubrid_close_prepare',
|
239
|
+
'cubrid_close_request',
|
240
|
+
'cubrid_col_get',
|
241
|
+
'cubrid_col_size',
|
242
|
+
'cubrid_column_names',
|
243
|
+
'cubrid_column_types',
|
244
|
+
'cubrid_commit',
|
245
|
+
'cubrid_connect_with_url',
|
246
|
+
'cubrid_connect',
|
247
|
+
'cubrid_current_oid',
|
248
|
+
'cubrid_disconnect',
|
249
|
+
'cubrid_drop',
|
250
|
+
'cubrid_error_code_facility',
|
251
|
+
'cubrid_error_code',
|
252
|
+
'cubrid_error_msg',
|
253
|
+
'cubrid_execute',
|
254
|
+
'cubrid_fetch',
|
255
|
+
'cubrid_free_result',
|
256
|
+
'cubrid_get_autocommit',
|
257
|
+
'cubrid_get_charset',
|
258
|
+
'cubrid_get_class_name',
|
259
|
+
'cubrid_get_client_info',
|
260
|
+
'cubrid_get_db_parameter',
|
261
|
+
'cubrid_get_query_timeout',
|
262
|
+
'cubrid_get_server_info',
|
263
|
+
'cubrid_get',
|
264
|
+
'cubrid_insert_id',
|
265
|
+
'cubrid_is_instance',
|
266
|
+
'cubrid_lob_close',
|
267
|
+
'cubrid_lob_export',
|
268
|
+
'cubrid_lob_get',
|
269
|
+
'cubrid_lob_send',
|
270
|
+
'cubrid_lob_size',
|
271
|
+
'cubrid_lob2_bind',
|
272
|
+
'cubrid_lob2_close',
|
273
|
+
'cubrid_lob2_export',
|
274
|
+
'cubrid_lob2_import',
|
275
|
+
'cubrid_lob2_new',
|
276
|
+
'cubrid_lob2_read',
|
277
|
+
'cubrid_lob2_seek64',
|
278
|
+
'cubrid_lob2_seek',
|
279
|
+
'cubrid_lob2_size64',
|
280
|
+
'cubrid_lob2_size',
|
281
|
+
'cubrid_lob2_tell64',
|
282
|
+
'cubrid_lob2_tell',
|
283
|
+
'cubrid_lob2_write',
|
284
|
+
'cubrid_lock_read',
|
285
|
+
'cubrid_lock_write',
|
286
|
+
'cubrid_move_cursor',
|
287
|
+
'cubrid_next_result',
|
288
|
+
'cubrid_num_cols',
|
289
|
+
'cubrid_num_rows',
|
290
|
+
'cubrid_pconnect_with_url',
|
291
|
+
'cubrid_pconnect',
|
292
|
+
'cubrid_prepare',
|
293
|
+
'cubrid_put',
|
294
|
+
'cubrid_rollback',
|
295
|
+
'cubrid_schema',
|
296
|
+
'cubrid_seq_drop',
|
297
|
+
'cubrid_seq_insert',
|
298
|
+
'cubrid_seq_put',
|
299
|
+
'cubrid_set_add',
|
300
|
+
'cubrid_set_autocommit',
|
301
|
+
'cubrid_set_db_parameter',
|
302
|
+
'cubrid_set_drop',
|
303
|
+
'cubrid_set_query_timeout',
|
304
|
+
'cubrid_version'),
|
305
|
+
'Cairo': ('cairo_create',
|
306
|
+
'cairo_font_face_get_type',
|
307
|
+
'cairo_font_face_status',
|
308
|
+
'cairo_font_options_create',
|
309
|
+
'cairo_font_options_equal',
|
310
|
+
'cairo_font_options_get_antialias',
|
311
|
+
'cairo_font_options_get_hint_metrics',
|
312
|
+
'cairo_font_options_get_hint_style',
|
313
|
+
'cairo_font_options_get_subpixel_order',
|
314
|
+
'cairo_font_options_hash',
|
315
|
+
'cairo_font_options_merge',
|
316
|
+
'cairo_font_options_set_antialias',
|
317
|
+
'cairo_font_options_set_hint_metrics',
|
318
|
+
'cairo_font_options_set_hint_style',
|
319
|
+
'cairo_font_options_set_subpixel_order',
|
320
|
+
'cairo_font_options_status',
|
321
|
+
'cairo_format_stride_for_width',
|
322
|
+
'cairo_image_surface_create_for_data',
|
323
|
+
'cairo_image_surface_create_from_png',
|
324
|
+
'cairo_image_surface_create',
|
325
|
+
'cairo_image_surface_get_data',
|
326
|
+
'cairo_image_surface_get_format',
|
327
|
+
'cairo_image_surface_get_height',
|
328
|
+
'cairo_image_surface_get_stride',
|
329
|
+
'cairo_image_surface_get_width',
|
330
|
+
'cairo_matrix_create_scale',
|
331
|
+
'cairo_matrix_create_translate',
|
332
|
+
'cairo_matrix_invert',
|
333
|
+
'cairo_matrix_multiply',
|
334
|
+
'cairo_matrix_rotate',
|
335
|
+
'cairo_matrix_transform_distance',
|
336
|
+
'cairo_matrix_transform_point',
|
337
|
+
'cairo_matrix_translate',
|
338
|
+
'cairo_pattern_add_color_stop_rgb',
|
339
|
+
'cairo_pattern_add_color_stop_rgba',
|
340
|
+
'cairo_pattern_create_for_surface',
|
341
|
+
'cairo_pattern_create_linear',
|
342
|
+
'cairo_pattern_create_radial',
|
343
|
+
'cairo_pattern_create_rgb',
|
344
|
+
'cairo_pattern_create_rgba',
|
345
|
+
'cairo_pattern_get_color_stop_count',
|
346
|
+
'cairo_pattern_get_color_stop_rgba',
|
347
|
+
'cairo_pattern_get_extend',
|
348
|
+
'cairo_pattern_get_filter',
|
349
|
+
'cairo_pattern_get_linear_points',
|
350
|
+
'cairo_pattern_get_matrix',
|
351
|
+
'cairo_pattern_get_radial_circles',
|
352
|
+
'cairo_pattern_get_rgba',
|
353
|
+
'cairo_pattern_get_surface',
|
354
|
+
'cairo_pattern_get_type',
|
355
|
+
'cairo_pattern_set_extend',
|
356
|
+
'cairo_pattern_set_filter',
|
357
|
+
'cairo_pattern_set_matrix',
|
358
|
+
'cairo_pattern_status',
|
359
|
+
'cairo_pdf_surface_create',
|
360
|
+
'cairo_pdf_surface_set_size',
|
361
|
+
'cairo_ps_get_levels',
|
362
|
+
'cairo_ps_level_to_string',
|
363
|
+
'cairo_ps_surface_create',
|
364
|
+
'cairo_ps_surface_dsc_begin_page_setup',
|
365
|
+
'cairo_ps_surface_dsc_begin_setup',
|
366
|
+
'cairo_ps_surface_dsc_comment',
|
367
|
+
'cairo_ps_surface_get_eps',
|
368
|
+
'cairo_ps_surface_restrict_to_level',
|
369
|
+
'cairo_ps_surface_set_eps',
|
370
|
+
'cairo_ps_surface_set_size',
|
371
|
+
'cairo_scaled_font_create',
|
372
|
+
'cairo_scaled_font_extents',
|
373
|
+
'cairo_scaled_font_get_ctm',
|
374
|
+
'cairo_scaled_font_get_font_face',
|
375
|
+
'cairo_scaled_font_get_font_matrix',
|
376
|
+
'cairo_scaled_font_get_font_options',
|
377
|
+
'cairo_scaled_font_get_scale_matrix',
|
378
|
+
'cairo_scaled_font_get_type',
|
379
|
+
'cairo_scaled_font_glyph_extents',
|
380
|
+
'cairo_scaled_font_status',
|
381
|
+
'cairo_scaled_font_text_extents',
|
382
|
+
'cairo_surface_copy_page',
|
383
|
+
'cairo_surface_create_similar',
|
384
|
+
'cairo_surface_finish',
|
385
|
+
'cairo_surface_flush',
|
386
|
+
'cairo_surface_get_content',
|
387
|
+
'cairo_surface_get_device_offset',
|
388
|
+
'cairo_surface_get_font_options',
|
389
|
+
'cairo_surface_get_type',
|
390
|
+
'cairo_surface_mark_dirty_rectangle',
|
391
|
+
'cairo_surface_mark_dirty',
|
392
|
+
'cairo_surface_set_device_offset',
|
393
|
+
'cairo_surface_set_fallback_resolution',
|
394
|
+
'cairo_surface_show_page',
|
395
|
+
'cairo_surface_status',
|
396
|
+
'cairo_surface_write_to_png',
|
397
|
+
'cairo_svg_surface_create',
|
398
|
+
'cairo_svg_surface_restrict_to_version',
|
399
|
+
'cairo_svg_version_to_string'),
|
400
|
+
'Calendar': ('cal_days_in_month',
|
401
|
+
'cal_from_jd',
|
402
|
+
'cal_info',
|
403
|
+
'cal_to_jd',
|
404
|
+
'easter_date',
|
405
|
+
'easter_days',
|
406
|
+
'FrenchToJD',
|
407
|
+
'GregorianToJD',
|
408
|
+
'JDDayOfWeek',
|
409
|
+
'JDMonthName',
|
410
|
+
'JDToFrench',
|
411
|
+
'JDToGregorian',
|
412
|
+
'jdtojewish',
|
413
|
+
'JDToJulian',
|
414
|
+
'jdtounix',
|
415
|
+
'JewishToJD',
|
416
|
+
'JulianToJD',
|
417
|
+
'unixtojd'),
|
418
|
+
'Classes/Object': ('__autoload',
|
419
|
+
'call_user_method_array',
|
420
|
+
'call_user_method',
|
421
|
+
'class_alias',
|
422
|
+
'class_exists',
|
423
|
+
'get_called_class',
|
424
|
+
'get_class_methods',
|
425
|
+
'get_class_vars',
|
426
|
+
'get_class',
|
427
|
+
'get_declared_classes',
|
428
|
+
'get_declared_interfaces',
|
429
|
+
'get_declared_traits',
|
430
|
+
'get_object_vars',
|
431
|
+
'get_parent_class',
|
432
|
+
'interface_exists',
|
433
|
+
'is_a',
|
434
|
+
'is_subclass_of',
|
435
|
+
'method_exists',
|
436
|
+
'property_exists',
|
437
|
+
'trait_exists'),
|
438
|
+
'Classkit': ('classkit_import',
|
439
|
+
'classkit_method_add',
|
440
|
+
'classkit_method_copy',
|
441
|
+
'classkit_method_redefine',
|
442
|
+
'classkit_method_remove',
|
443
|
+
'classkit_method_rename'),
|
444
|
+
'Crack': ('crack_check',
|
445
|
+
'crack_closedict',
|
446
|
+
'crack_getlastmessage',
|
447
|
+
'crack_opendict'),
|
448
|
+
'Ctype': ('ctype_alnum',
|
449
|
+
'ctype_alpha',
|
450
|
+
'ctype_cntrl',
|
451
|
+
'ctype_digit',
|
452
|
+
'ctype_graph',
|
453
|
+
'ctype_lower',
|
454
|
+
'ctype_print',
|
455
|
+
'ctype_punct',
|
456
|
+
'ctype_space',
|
457
|
+
'ctype_upper',
|
458
|
+
'ctype_xdigit'),
|
459
|
+
'Cyrus': ('cyrus_authenticate',
|
460
|
+
'cyrus_bind',
|
461
|
+
'cyrus_close',
|
462
|
+
'cyrus_connect',
|
463
|
+
'cyrus_query',
|
464
|
+
'cyrus_unbind'),
|
465
|
+
'DB++': ('dbplus_add',
|
466
|
+
'dbplus_aql',
|
467
|
+
'dbplus_chdir',
|
468
|
+
'dbplus_close',
|
469
|
+
'dbplus_curr',
|
470
|
+
'dbplus_errcode',
|
471
|
+
'dbplus_errno',
|
472
|
+
'dbplus_find',
|
473
|
+
'dbplus_first',
|
474
|
+
'dbplus_flush',
|
475
|
+
'dbplus_freealllocks',
|
476
|
+
'dbplus_freelock',
|
477
|
+
'dbplus_freerlocks',
|
478
|
+
'dbplus_getlock',
|
479
|
+
'dbplus_getunique',
|
480
|
+
'dbplus_info',
|
481
|
+
'dbplus_last',
|
482
|
+
'dbplus_lockrel',
|
483
|
+
'dbplus_next',
|
484
|
+
'dbplus_open',
|
485
|
+
'dbplus_prev',
|
486
|
+
'dbplus_rchperm',
|
487
|
+
'dbplus_rcreate',
|
488
|
+
'dbplus_rcrtexact',
|
489
|
+
'dbplus_rcrtlike',
|
490
|
+
'dbplus_resolve',
|
491
|
+
'dbplus_restorepos',
|
492
|
+
'dbplus_rkeys',
|
493
|
+
'dbplus_ropen',
|
494
|
+
'dbplus_rquery',
|
495
|
+
'dbplus_rrename',
|
496
|
+
'dbplus_rsecindex',
|
497
|
+
'dbplus_runlink',
|
498
|
+
'dbplus_rzap',
|
499
|
+
'dbplus_savepos',
|
500
|
+
'dbplus_setindex',
|
501
|
+
'dbplus_setindexbynumber',
|
502
|
+
'dbplus_sql',
|
503
|
+
'dbplus_tcl',
|
504
|
+
'dbplus_tremove',
|
505
|
+
'dbplus_undo',
|
506
|
+
'dbplus_undoprepare',
|
507
|
+
'dbplus_unlockrel',
|
508
|
+
'dbplus_unselect',
|
509
|
+
'dbplus_update',
|
510
|
+
'dbplus_xlockrel',
|
511
|
+
'dbplus_xunlockrel'),
|
512
|
+
'DBA': ('dba_close',
|
513
|
+
'dba_delete',
|
514
|
+
'dba_exists',
|
515
|
+
'dba_fetch',
|
516
|
+
'dba_firstkey',
|
517
|
+
'dba_handlers',
|
518
|
+
'dba_insert',
|
519
|
+
'dba_key_split',
|
520
|
+
'dba_list',
|
521
|
+
'dba_nextkey',
|
522
|
+
'dba_open',
|
523
|
+
'dba_optimize',
|
524
|
+
'dba_popen',
|
525
|
+
'dba_replace',
|
526
|
+
'dba_sync'),
|
527
|
+
'DOM': ('dom_import_simplexml',),
|
528
|
+
'Date/Time': ('checkdate',
|
529
|
+
'date_add',
|
530
|
+
'date_create_from_format',
|
531
|
+
'date_create_immutable_from_format',
|
532
|
+
'date_create_immutable',
|
533
|
+
'date_create',
|
534
|
+
'date_date_set',
|
535
|
+
'date_default_timezone_get',
|
536
|
+
'date_default_timezone_set',
|
537
|
+
'date_diff',
|
538
|
+
'date_format',
|
539
|
+
'date_get_last_errors',
|
540
|
+
'date_interval_create_from_date_string',
|
541
|
+
'date_interval_format',
|
542
|
+
'date_isodate_set',
|
543
|
+
'date_modify',
|
544
|
+
'date_offset_get',
|
545
|
+
'date_parse_from_format',
|
546
|
+
'date_parse',
|
547
|
+
'date_sub',
|
548
|
+
'date_sun_info',
|
549
|
+
'date_sunrise',
|
550
|
+
'date_sunset',
|
551
|
+
'date_time_set',
|
552
|
+
'date_timestamp_get',
|
553
|
+
'date_timestamp_set',
|
554
|
+
'date_timezone_get',
|
555
|
+
'date_timezone_set',
|
556
|
+
'date',
|
557
|
+
'getdate',
|
558
|
+
'gettimeofday',
|
559
|
+
'gmdate',
|
560
|
+
'gmmktime',
|
561
|
+
'gmstrftime',
|
562
|
+
'idate',
|
563
|
+
'localtime',
|
564
|
+
'microtime',
|
565
|
+
'mktime',
|
566
|
+
'strftime',
|
567
|
+
'strptime',
|
568
|
+
'strtotime',
|
569
|
+
'time',
|
570
|
+
'timezone_abbreviations_list',
|
571
|
+
'timezone_identifiers_list',
|
572
|
+
'timezone_location_get',
|
573
|
+
'timezone_name_from_abbr',
|
574
|
+
'timezone_name_get',
|
575
|
+
'timezone_offset_get',
|
576
|
+
'timezone_open',
|
577
|
+
'timezone_transitions_get',
|
578
|
+
'timezone_version_get'),
|
579
|
+
'Direct IO': ('dio_close',
|
580
|
+
'dio_fcntl',
|
581
|
+
'dio_open',
|
582
|
+
'dio_read',
|
583
|
+
'dio_seek',
|
584
|
+
'dio_stat',
|
585
|
+
'dio_tcsetattr',
|
586
|
+
'dio_truncate',
|
587
|
+
'dio_write'),
|
588
|
+
'Directory': ('chdir',
|
589
|
+
'chroot',
|
590
|
+
'closedir',
|
591
|
+
'dir',
|
592
|
+
'getcwd',
|
593
|
+
'opendir',
|
594
|
+
'readdir',
|
595
|
+
'rewinddir',
|
596
|
+
'scandir'),
|
597
|
+
'Eio': ('eio_busy',
|
598
|
+
'eio_cancel',
|
599
|
+
'eio_chmod',
|
600
|
+
'eio_chown',
|
601
|
+
'eio_close',
|
602
|
+
'eio_custom',
|
603
|
+
'eio_dup2',
|
604
|
+
'eio_event_loop',
|
605
|
+
'eio_fallocate',
|
606
|
+
'eio_fchmod',
|
607
|
+
'eio_fchown',
|
608
|
+
'eio_fdatasync',
|
609
|
+
'eio_fstat',
|
610
|
+
'eio_fstatvfs',
|
611
|
+
'eio_fsync',
|
612
|
+
'eio_ftruncate',
|
613
|
+
'eio_futime',
|
614
|
+
'eio_get_event_stream',
|
615
|
+
'eio_get_last_error',
|
616
|
+
'eio_grp_add',
|
617
|
+
'eio_grp_cancel',
|
618
|
+
'eio_grp_limit',
|
619
|
+
'eio_grp',
|
620
|
+
'eio_init',
|
621
|
+
'eio_link',
|
622
|
+
'eio_lstat',
|
623
|
+
'eio_mkdir',
|
624
|
+
'eio_mknod',
|
625
|
+
'eio_nop',
|
626
|
+
'eio_npending',
|
627
|
+
'eio_nready',
|
628
|
+
'eio_nreqs',
|
629
|
+
'eio_nthreads',
|
630
|
+
'eio_open',
|
631
|
+
'eio_poll',
|
632
|
+
'eio_read',
|
633
|
+
'eio_readahead',
|
634
|
+
'eio_readdir',
|
635
|
+
'eio_readlink',
|
636
|
+
'eio_realpath',
|
637
|
+
'eio_rename',
|
638
|
+
'eio_rmdir',
|
639
|
+
'eio_seek',
|
640
|
+
'eio_sendfile',
|
641
|
+
'eio_set_max_idle',
|
642
|
+
'eio_set_max_parallel',
|
643
|
+
'eio_set_max_poll_reqs',
|
644
|
+
'eio_set_max_poll_time',
|
645
|
+
'eio_set_min_parallel',
|
646
|
+
'eio_stat',
|
647
|
+
'eio_statvfs',
|
648
|
+
'eio_symlink',
|
649
|
+
'eio_sync_file_range',
|
650
|
+
'eio_sync',
|
651
|
+
'eio_syncfs',
|
652
|
+
'eio_truncate',
|
653
|
+
'eio_unlink',
|
654
|
+
'eio_utime',
|
655
|
+
'eio_write'),
|
656
|
+
'Enchant': ('enchant_broker_describe',
|
657
|
+
'enchant_broker_dict_exists',
|
658
|
+
'enchant_broker_free_dict',
|
659
|
+
'enchant_broker_free',
|
660
|
+
'enchant_broker_get_error',
|
661
|
+
'enchant_broker_init',
|
662
|
+
'enchant_broker_list_dicts',
|
663
|
+
'enchant_broker_request_dict',
|
664
|
+
'enchant_broker_request_pwl_dict',
|
665
|
+
'enchant_broker_set_ordering',
|
666
|
+
'enchant_dict_add_to_personal',
|
667
|
+
'enchant_dict_add_to_session',
|
668
|
+
'enchant_dict_check',
|
669
|
+
'enchant_dict_describe',
|
670
|
+
'enchant_dict_get_error',
|
671
|
+
'enchant_dict_is_in_session',
|
672
|
+
'enchant_dict_quick_check',
|
673
|
+
'enchant_dict_store_replacement',
|
674
|
+
'enchant_dict_suggest'),
|
675
|
+
'Error Handling': ('debug_backtrace',
|
676
|
+
'debug_print_backtrace',
|
677
|
+
'error_get_last',
|
678
|
+
'error_log',
|
679
|
+
'error_reporting',
|
680
|
+
'restore_error_handler',
|
681
|
+
'restore_exception_handler',
|
682
|
+
'set_error_handler',
|
683
|
+
'set_exception_handler',
|
684
|
+
'trigger_error',
|
685
|
+
'user_error'),
|
686
|
+
'Exif': ('exif_imagetype',
|
687
|
+
'exif_read_data',
|
688
|
+
'exif_tagname',
|
689
|
+
'exif_thumbnail',
|
690
|
+
'read_exif_data'),
|
691
|
+
'Expect': ('expect_expectl', 'expect_popen'),
|
692
|
+
'FAM': ('fam_cancel_monitor',
|
693
|
+
'fam_close',
|
694
|
+
'fam_monitor_collection',
|
695
|
+
'fam_monitor_directory',
|
696
|
+
'fam_monitor_file',
|
697
|
+
'fam_next_event',
|
698
|
+
'fam_open',
|
699
|
+
'fam_pending',
|
700
|
+
'fam_resume_monitor',
|
701
|
+
'fam_suspend_monitor'),
|
702
|
+
'FDF': ('fdf_add_doc_javascript',
|
703
|
+
'fdf_add_template',
|
704
|
+
'fdf_close',
|
705
|
+
'fdf_create',
|
706
|
+
'fdf_enum_values',
|
707
|
+
'fdf_errno',
|
708
|
+
'fdf_error',
|
709
|
+
'fdf_get_ap',
|
710
|
+
'fdf_get_attachment',
|
711
|
+
'fdf_get_encoding',
|
712
|
+
'fdf_get_file',
|
713
|
+
'fdf_get_flags',
|
714
|
+
'fdf_get_opt',
|
715
|
+
'fdf_get_status',
|
716
|
+
'fdf_get_value',
|
717
|
+
'fdf_get_version',
|
718
|
+
'fdf_header',
|
719
|
+
'fdf_next_field_name',
|
720
|
+
'fdf_open_string',
|
721
|
+
'fdf_open',
|
722
|
+
'fdf_remove_item',
|
723
|
+
'fdf_save_string',
|
724
|
+
'fdf_save',
|
725
|
+
'fdf_set_ap',
|
726
|
+
'fdf_set_encoding',
|
727
|
+
'fdf_set_file',
|
728
|
+
'fdf_set_flags',
|
729
|
+
'fdf_set_javascript_action',
|
730
|
+
'fdf_set_on_import_javascript',
|
731
|
+
'fdf_set_opt',
|
732
|
+
'fdf_set_status',
|
733
|
+
'fdf_set_submit_form_action',
|
734
|
+
'fdf_set_target_frame',
|
735
|
+
'fdf_set_value',
|
736
|
+
'fdf_set_version'),
|
737
|
+
'FPM': ('fastcgi_finish_request',),
|
738
|
+
'FTP': ('ftp_alloc',
|
739
|
+
'ftp_cdup',
|
740
|
+
'ftp_chdir',
|
741
|
+
'ftp_chmod',
|
742
|
+
'ftp_close',
|
743
|
+
'ftp_connect',
|
744
|
+
'ftp_delete',
|
745
|
+
'ftp_exec',
|
746
|
+
'ftp_fget',
|
747
|
+
'ftp_fput',
|
748
|
+
'ftp_get_option',
|
749
|
+
'ftp_get',
|
750
|
+
'ftp_login',
|
751
|
+
'ftp_mdtm',
|
752
|
+
'ftp_mkdir',
|
753
|
+
'ftp_nb_continue',
|
754
|
+
'ftp_nb_fget',
|
755
|
+
'ftp_nb_fput',
|
756
|
+
'ftp_nb_get',
|
757
|
+
'ftp_nb_put',
|
758
|
+
'ftp_nlist',
|
759
|
+
'ftp_pasv',
|
760
|
+
'ftp_put',
|
761
|
+
'ftp_pwd',
|
762
|
+
'ftp_quit',
|
763
|
+
'ftp_raw',
|
764
|
+
'ftp_rawlist',
|
765
|
+
'ftp_rename',
|
766
|
+
'ftp_rmdir',
|
767
|
+
'ftp_set_option',
|
768
|
+
'ftp_site',
|
769
|
+
'ftp_size',
|
770
|
+
'ftp_ssl_connect',
|
771
|
+
'ftp_systype'),
|
772
|
+
'Fann': ('fann_cascadetrain_on_data',
|
773
|
+
'fann_cascadetrain_on_file',
|
774
|
+
'fann_clear_scaling_params',
|
775
|
+
'fann_copy',
|
776
|
+
'fann_create_from_file',
|
777
|
+
'fann_create_shortcut_array',
|
778
|
+
'fann_create_shortcut',
|
779
|
+
'fann_create_sparse_array',
|
780
|
+
'fann_create_sparse',
|
781
|
+
'fann_create_standard_array',
|
782
|
+
'fann_create_standard',
|
783
|
+
'fann_create_train_from_callback',
|
784
|
+
'fann_create_train',
|
785
|
+
'fann_descale_input',
|
786
|
+
'fann_descale_output',
|
787
|
+
'fann_descale_train',
|
788
|
+
'fann_destroy_train',
|
789
|
+
'fann_destroy',
|
790
|
+
'fann_duplicate_train_data',
|
791
|
+
'fann_get_activation_function',
|
792
|
+
'fann_get_activation_steepness',
|
793
|
+
'fann_get_bias_array',
|
794
|
+
'fann_get_bit_fail_limit',
|
795
|
+
'fann_get_bit_fail',
|
796
|
+
'fann_get_cascade_activation_functions_count',
|
797
|
+
'fann_get_cascade_activation_functions',
|
798
|
+
'fann_get_cascade_activation_steepnesses_count',
|
799
|
+
'fann_get_cascade_activation_steepnesses',
|
800
|
+
'fann_get_cascade_candidate_change_fraction',
|
801
|
+
'fann_get_cascade_candidate_limit',
|
802
|
+
'fann_get_cascade_candidate_stagnation_epochs',
|
803
|
+
'fann_get_cascade_max_cand_epochs',
|
804
|
+
'fann_get_cascade_max_out_epochs',
|
805
|
+
'fann_get_cascade_min_cand_epochs',
|
806
|
+
'fann_get_cascade_min_out_epochs',
|
807
|
+
'fann_get_cascade_num_candidate_groups',
|
808
|
+
'fann_get_cascade_num_candidates',
|
809
|
+
'fann_get_cascade_output_change_fraction',
|
810
|
+
'fann_get_cascade_output_stagnation_epochs',
|
811
|
+
'fann_get_cascade_weight_multiplier',
|
812
|
+
'fann_get_connection_array',
|
813
|
+
'fann_get_connection_rate',
|
814
|
+
'fann_get_errno',
|
815
|
+
'fann_get_errstr',
|
816
|
+
'fann_get_layer_array',
|
817
|
+
'fann_get_learning_momentum',
|
818
|
+
'fann_get_learning_rate',
|
819
|
+
'fann_get_MSE',
|
820
|
+
'fann_get_network_type',
|
821
|
+
'fann_get_num_input',
|
822
|
+
'fann_get_num_layers',
|
823
|
+
'fann_get_num_output',
|
824
|
+
'fann_get_quickprop_decay',
|
825
|
+
'fann_get_quickprop_mu',
|
826
|
+
'fann_get_rprop_decrease_factor',
|
827
|
+
'fann_get_rprop_delta_max',
|
828
|
+
'fann_get_rprop_delta_min',
|
829
|
+
'fann_get_rprop_delta_zero',
|
830
|
+
'fann_get_rprop_increase_factor',
|
831
|
+
'fann_get_sarprop_step_error_shift',
|
832
|
+
'fann_get_sarprop_step_error_threshold_factor',
|
833
|
+
'fann_get_sarprop_temperature',
|
834
|
+
'fann_get_sarprop_weight_decay_shift',
|
835
|
+
'fann_get_total_connections',
|
836
|
+
'fann_get_total_neurons',
|
837
|
+
'fann_get_train_error_function',
|
838
|
+
'fann_get_train_stop_function',
|
839
|
+
'fann_get_training_algorithm',
|
840
|
+
'fann_init_weights',
|
841
|
+
'fann_length_train_data',
|
842
|
+
'fann_merge_train_data',
|
843
|
+
'fann_num_input_train_data',
|
844
|
+
'fann_num_output_train_data',
|
845
|
+
'fann_print_error',
|
846
|
+
'fann_randomize_weights',
|
847
|
+
'fann_read_train_from_file',
|
848
|
+
'fann_reset_errno',
|
849
|
+
'fann_reset_errstr',
|
850
|
+
'fann_reset_MSE',
|
851
|
+
'fann_run',
|
852
|
+
'fann_save_train',
|
853
|
+
'fann_save',
|
854
|
+
'fann_scale_input_train_data',
|
855
|
+
'fann_scale_input',
|
856
|
+
'fann_scale_output_train_data',
|
857
|
+
'fann_scale_output',
|
858
|
+
'fann_scale_train_data',
|
859
|
+
'fann_scale_train',
|
860
|
+
'fann_set_activation_function_hidden',
|
861
|
+
'fann_set_activation_function_layer',
|
862
|
+
'fann_set_activation_function_output',
|
863
|
+
'fann_set_activation_function',
|
864
|
+
'fann_set_activation_steepness_hidden',
|
865
|
+
'fann_set_activation_steepness_layer',
|
866
|
+
'fann_set_activation_steepness_output',
|
867
|
+
'fann_set_activation_steepness',
|
868
|
+
'fann_set_bit_fail_limit',
|
869
|
+
'fann_set_callback',
|
870
|
+
'fann_set_cascade_activation_functions',
|
871
|
+
'fann_set_cascade_activation_steepnesses',
|
872
|
+
'fann_set_cascade_candidate_change_fraction',
|
873
|
+
'fann_set_cascade_candidate_limit',
|
874
|
+
'fann_set_cascade_candidate_stagnation_epochs',
|
875
|
+
'fann_set_cascade_max_cand_epochs',
|
876
|
+
'fann_set_cascade_max_out_epochs',
|
877
|
+
'fann_set_cascade_min_cand_epochs',
|
878
|
+
'fann_set_cascade_min_out_epochs',
|
879
|
+
'fann_set_cascade_num_candidate_groups',
|
880
|
+
'fann_set_cascade_output_change_fraction',
|
881
|
+
'fann_set_cascade_output_stagnation_epochs',
|
882
|
+
'fann_set_cascade_weight_multiplier',
|
883
|
+
'fann_set_error_log',
|
884
|
+
'fann_set_input_scaling_params',
|
885
|
+
'fann_set_learning_momentum',
|
886
|
+
'fann_set_learning_rate',
|
887
|
+
'fann_set_output_scaling_params',
|
888
|
+
'fann_set_quickprop_decay',
|
889
|
+
'fann_set_quickprop_mu',
|
890
|
+
'fann_set_rprop_decrease_factor',
|
891
|
+
'fann_set_rprop_delta_max',
|
892
|
+
'fann_set_rprop_delta_min',
|
893
|
+
'fann_set_rprop_delta_zero',
|
894
|
+
'fann_set_rprop_increase_factor',
|
895
|
+
'fann_set_sarprop_step_error_shift',
|
896
|
+
'fann_set_sarprop_step_error_threshold_factor',
|
897
|
+
'fann_set_sarprop_temperature',
|
898
|
+
'fann_set_sarprop_weight_decay_shift',
|
899
|
+
'fann_set_scaling_params',
|
900
|
+
'fann_set_train_error_function',
|
901
|
+
'fann_set_train_stop_function',
|
902
|
+
'fann_set_training_algorithm',
|
903
|
+
'fann_set_weight_array',
|
904
|
+
'fann_set_weight',
|
905
|
+
'fann_shuffle_train_data',
|
906
|
+
'fann_subset_train_data',
|
907
|
+
'fann_test_data',
|
908
|
+
'fann_test',
|
909
|
+
'fann_train_epoch',
|
910
|
+
'fann_train_on_data',
|
911
|
+
'fann_train_on_file',
|
912
|
+
'fann_train'),
|
913
|
+
'Fileinfo': ('finfo_buffer',
|
914
|
+
'finfo_close',
|
915
|
+
'finfo_file',
|
916
|
+
'finfo_open',
|
917
|
+
'finfo_set_flags',
|
918
|
+
'mime_content_type'),
|
919
|
+
'Filesystem': ('basename',
|
920
|
+
'chgrp',
|
921
|
+
'chmod',
|
922
|
+
'chown',
|
923
|
+
'clearstatcache',
|
924
|
+
'copy',
|
925
|
+
'dirname',
|
926
|
+
'disk_free_space',
|
927
|
+
'disk_total_space',
|
928
|
+
'diskfreespace',
|
929
|
+
'fclose',
|
930
|
+
'feof',
|
931
|
+
'fflush',
|
932
|
+
'fgetc',
|
933
|
+
'fgetcsv',
|
934
|
+
'fgets',
|
935
|
+
'fgetss',
|
936
|
+
'file_exists',
|
937
|
+
'file_get_contents',
|
938
|
+
'file_put_contents',
|
939
|
+
'file',
|
940
|
+
'fileatime',
|
941
|
+
'filectime',
|
942
|
+
'filegroup',
|
943
|
+
'fileinode',
|
944
|
+
'filemtime',
|
945
|
+
'fileowner',
|
946
|
+
'fileperms',
|
947
|
+
'filesize',
|
948
|
+
'filetype',
|
949
|
+
'flock',
|
950
|
+
'fnmatch',
|
951
|
+
'fopen',
|
952
|
+
'fpassthru',
|
953
|
+
'fputcsv',
|
954
|
+
'fputs',
|
955
|
+
'fread',
|
956
|
+
'fscanf',
|
957
|
+
'fseek',
|
958
|
+
'fstat',
|
959
|
+
'ftell',
|
960
|
+
'ftruncate',
|
961
|
+
'fwrite',
|
962
|
+
'glob',
|
963
|
+
'is_dir',
|
964
|
+
'is_executable',
|
965
|
+
'is_file',
|
966
|
+
'is_link',
|
967
|
+
'is_readable',
|
968
|
+
'is_uploaded_file',
|
969
|
+
'is_writable',
|
970
|
+
'is_writeable',
|
971
|
+
'lchgrp',
|
972
|
+
'lchown',
|
973
|
+
'link',
|
974
|
+
'linkinfo',
|
975
|
+
'lstat',
|
976
|
+
'mkdir',
|
977
|
+
'move_uploaded_file',
|
978
|
+
'parse_ini_file',
|
979
|
+
'parse_ini_string',
|
980
|
+
'pathinfo',
|
981
|
+
'pclose',
|
982
|
+
'popen',
|
983
|
+
'readfile',
|
984
|
+
'readlink',
|
985
|
+
'realpath_cache_get',
|
986
|
+
'realpath_cache_size',
|
987
|
+
'realpath',
|
988
|
+
'rename',
|
989
|
+
'rewind',
|
990
|
+
'rmdir',
|
991
|
+
'set_file_buffer',
|
992
|
+
'stat',
|
993
|
+
'symlink',
|
994
|
+
'tempnam',
|
995
|
+
'tmpfile',
|
996
|
+
'touch',
|
997
|
+
'umask',
|
998
|
+
'unlink'),
|
999
|
+
'Filter': ('filter_has_var',
|
1000
|
+
'filter_id',
|
1001
|
+
'filter_input_array',
|
1002
|
+
'filter_input',
|
1003
|
+
'filter_list',
|
1004
|
+
'filter_var_array',
|
1005
|
+
'filter_var'),
|
1006
|
+
'Firebird/InterBase': ('ibase_add_user',
|
1007
|
+
'ibase_affected_rows',
|
1008
|
+
'ibase_backup',
|
1009
|
+
'ibase_blob_add',
|
1010
|
+
'ibase_blob_cancel',
|
1011
|
+
'ibase_blob_close',
|
1012
|
+
'ibase_blob_create',
|
1013
|
+
'ibase_blob_echo',
|
1014
|
+
'ibase_blob_get',
|
1015
|
+
'ibase_blob_import',
|
1016
|
+
'ibase_blob_info',
|
1017
|
+
'ibase_blob_open',
|
1018
|
+
'ibase_close',
|
1019
|
+
'ibase_commit_ret',
|
1020
|
+
'ibase_commit',
|
1021
|
+
'ibase_connect',
|
1022
|
+
'ibase_db_info',
|
1023
|
+
'ibase_delete_user',
|
1024
|
+
'ibase_drop_db',
|
1025
|
+
'ibase_errcode',
|
1026
|
+
'ibase_errmsg',
|
1027
|
+
'ibase_execute',
|
1028
|
+
'ibase_fetch_assoc',
|
1029
|
+
'ibase_fetch_object',
|
1030
|
+
'ibase_fetch_row',
|
1031
|
+
'ibase_field_info',
|
1032
|
+
'ibase_free_event_handler',
|
1033
|
+
'ibase_free_query',
|
1034
|
+
'ibase_free_result',
|
1035
|
+
'ibase_gen_id',
|
1036
|
+
'ibase_maintain_db',
|
1037
|
+
'ibase_modify_user',
|
1038
|
+
'ibase_name_result',
|
1039
|
+
'ibase_num_fields',
|
1040
|
+
'ibase_num_params',
|
1041
|
+
'ibase_param_info',
|
1042
|
+
'ibase_pconnect',
|
1043
|
+
'ibase_prepare',
|
1044
|
+
'ibase_query',
|
1045
|
+
'ibase_restore',
|
1046
|
+
'ibase_rollback_ret',
|
1047
|
+
'ibase_rollback',
|
1048
|
+
'ibase_server_info',
|
1049
|
+
'ibase_service_attach',
|
1050
|
+
'ibase_service_detach',
|
1051
|
+
'ibase_set_event_handler',
|
1052
|
+
'ibase_trans',
|
1053
|
+
'ibase_wait_event'),
|
1054
|
+
'FriBiDi': ('fribidi_log2vis',),
|
1055
|
+
'FrontBase': ('fbsql_affected_rows',
|
1056
|
+
'fbsql_autocommit',
|
1057
|
+
'fbsql_blob_size',
|
1058
|
+
'fbsql_change_user',
|
1059
|
+
'fbsql_clob_size',
|
1060
|
+
'fbsql_close',
|
1061
|
+
'fbsql_commit',
|
1062
|
+
'fbsql_connect',
|
1063
|
+
'fbsql_create_blob',
|
1064
|
+
'fbsql_create_clob',
|
1065
|
+
'fbsql_create_db',
|
1066
|
+
'fbsql_data_seek',
|
1067
|
+
'fbsql_database_password',
|
1068
|
+
'fbsql_database',
|
1069
|
+
'fbsql_db_query',
|
1070
|
+
'fbsql_db_status',
|
1071
|
+
'fbsql_drop_db',
|
1072
|
+
'fbsql_errno',
|
1073
|
+
'fbsql_error',
|
1074
|
+
'fbsql_fetch_array',
|
1075
|
+
'fbsql_fetch_assoc',
|
1076
|
+
'fbsql_fetch_field',
|
1077
|
+
'fbsql_fetch_lengths',
|
1078
|
+
'fbsql_fetch_object',
|
1079
|
+
'fbsql_fetch_row',
|
1080
|
+
'fbsql_field_flags',
|
1081
|
+
'fbsql_field_len',
|
1082
|
+
'fbsql_field_name',
|
1083
|
+
'fbsql_field_seek',
|
1084
|
+
'fbsql_field_table',
|
1085
|
+
'fbsql_field_type',
|
1086
|
+
'fbsql_free_result',
|
1087
|
+
'fbsql_get_autostart_info',
|
1088
|
+
'fbsql_hostname',
|
1089
|
+
'fbsql_insert_id',
|
1090
|
+
'fbsql_list_dbs',
|
1091
|
+
'fbsql_list_fields',
|
1092
|
+
'fbsql_list_tables',
|
1093
|
+
'fbsql_next_result',
|
1094
|
+
'fbsql_num_fields',
|
1095
|
+
'fbsql_num_rows',
|
1096
|
+
'fbsql_password',
|
1097
|
+
'fbsql_pconnect',
|
1098
|
+
'fbsql_query',
|
1099
|
+
'fbsql_read_blob',
|
1100
|
+
'fbsql_read_clob',
|
1101
|
+
'fbsql_result',
|
1102
|
+
'fbsql_rollback',
|
1103
|
+
'fbsql_rows_fetched',
|
1104
|
+
'fbsql_select_db',
|
1105
|
+
'fbsql_set_characterset',
|
1106
|
+
'fbsql_set_lob_mode',
|
1107
|
+
'fbsql_set_password',
|
1108
|
+
'fbsql_set_transaction',
|
1109
|
+
'fbsql_start_db',
|
1110
|
+
'fbsql_stop_db',
|
1111
|
+
'fbsql_table_name',
|
1112
|
+
'fbsql_tablename',
|
1113
|
+
'fbsql_username',
|
1114
|
+
'fbsql_warnings'),
|
1115
|
+
'Function handling': ('call_user_func_array',
|
1116
|
+
'call_user_func',
|
1117
|
+
'create_function',
|
1118
|
+
'forward_static_call_array',
|
1119
|
+
'forward_static_call',
|
1120
|
+
'func_get_arg',
|
1121
|
+
'func_get_args',
|
1122
|
+
'func_num_args',
|
1123
|
+
'function_exists',
|
1124
|
+
'get_defined_functions',
|
1125
|
+
'register_shutdown_function',
|
1126
|
+
'register_tick_function',
|
1127
|
+
'unregister_tick_function'),
|
1128
|
+
'GD and Image': ('gd_info',
|
1129
|
+
'getimagesize',
|
1130
|
+
'getimagesizefromstring',
|
1131
|
+
'image_type_to_extension',
|
1132
|
+
'image_type_to_mime_type',
|
1133
|
+
'image2wbmp',
|
1134
|
+
'imageaffine',
|
1135
|
+
'imageaffinematrixconcat',
|
1136
|
+
'imageaffinematrixget',
|
1137
|
+
'imagealphablending',
|
1138
|
+
'imageantialias',
|
1139
|
+
'imagearc',
|
1140
|
+
'imagechar',
|
1141
|
+
'imagecharup',
|
1142
|
+
'imagecolorallocate',
|
1143
|
+
'imagecolorallocatealpha',
|
1144
|
+
'imagecolorat',
|
1145
|
+
'imagecolorclosest',
|
1146
|
+
'imagecolorclosestalpha',
|
1147
|
+
'imagecolorclosesthwb',
|
1148
|
+
'imagecolordeallocate',
|
1149
|
+
'imagecolorexact',
|
1150
|
+
'imagecolorexactalpha',
|
1151
|
+
'imagecolormatch',
|
1152
|
+
'imagecolorresolve',
|
1153
|
+
'imagecolorresolvealpha',
|
1154
|
+
'imagecolorset',
|
1155
|
+
'imagecolorsforindex',
|
1156
|
+
'imagecolorstotal',
|
1157
|
+
'imagecolortransparent',
|
1158
|
+
'imageconvolution',
|
1159
|
+
'imagecopy',
|
1160
|
+
'imagecopymerge',
|
1161
|
+
'imagecopymergegray',
|
1162
|
+
'imagecopyresampled',
|
1163
|
+
'imagecopyresized',
|
1164
|
+
'imagecreate',
|
1165
|
+
'imagecreatefromgd2',
|
1166
|
+
'imagecreatefromgd2part',
|
1167
|
+
'imagecreatefromgd',
|
1168
|
+
'imagecreatefromgif',
|
1169
|
+
'imagecreatefromjpeg',
|
1170
|
+
'imagecreatefrompng',
|
1171
|
+
'imagecreatefromstring',
|
1172
|
+
'imagecreatefromwbmp',
|
1173
|
+
'imagecreatefromwebp',
|
1174
|
+
'imagecreatefromxbm',
|
1175
|
+
'imagecreatefromxpm',
|
1176
|
+
'imagecreatetruecolor',
|
1177
|
+
'imagecrop',
|
1178
|
+
'imagecropauto',
|
1179
|
+
'imagedashedline',
|
1180
|
+
'imagedestroy',
|
1181
|
+
'imageellipse',
|
1182
|
+
'imagefill',
|
1183
|
+
'imagefilledarc',
|
1184
|
+
'imagefilledellipse',
|
1185
|
+
'imagefilledpolygon',
|
1186
|
+
'imagefilledrectangle',
|
1187
|
+
'imagefilltoborder',
|
1188
|
+
'imagefilter',
|
1189
|
+
'imageflip',
|
1190
|
+
'imagefontheight',
|
1191
|
+
'imagefontwidth',
|
1192
|
+
'imageftbbox',
|
1193
|
+
'imagefttext',
|
1194
|
+
'imagegammacorrect',
|
1195
|
+
'imagegd2',
|
1196
|
+
'imagegd',
|
1197
|
+
'imagegif',
|
1198
|
+
'imagegrabscreen',
|
1199
|
+
'imagegrabwindow',
|
1200
|
+
'imageinterlace',
|
1201
|
+
'imageistruecolor',
|
1202
|
+
'imagejpeg',
|
1203
|
+
'imagelayereffect',
|
1204
|
+
'imageline',
|
1205
|
+
'imageloadfont',
|
1206
|
+
'imagepalettecopy',
|
1207
|
+
'imagepalettetotruecolor',
|
1208
|
+
'imagepng',
|
1209
|
+
'imagepolygon',
|
1210
|
+
'imagepsbbox',
|
1211
|
+
'imagepsencodefont',
|
1212
|
+
'imagepsextendfont',
|
1213
|
+
'imagepsfreefont',
|
1214
|
+
'imagepsloadfont',
|
1215
|
+
'imagepsslantfont',
|
1216
|
+
'imagepstext',
|
1217
|
+
'imagerectangle',
|
1218
|
+
'imagerotate',
|
1219
|
+
'imagesavealpha',
|
1220
|
+
'imagescale',
|
1221
|
+
'imagesetbrush',
|
1222
|
+
'imagesetinterpolation',
|
1223
|
+
'imagesetpixel',
|
1224
|
+
'imagesetstyle',
|
1225
|
+
'imagesetthickness',
|
1226
|
+
'imagesettile',
|
1227
|
+
'imagestring',
|
1228
|
+
'imagestringup',
|
1229
|
+
'imagesx',
|
1230
|
+
'imagesy',
|
1231
|
+
'imagetruecolortopalette',
|
1232
|
+
'imagettfbbox',
|
1233
|
+
'imagettftext',
|
1234
|
+
'imagetypes',
|
1235
|
+
'imagewbmp',
|
1236
|
+
'imagewebp',
|
1237
|
+
'imagexbm',
|
1238
|
+
'iptcembed',
|
1239
|
+
'iptcparse',
|
1240
|
+
'jpeg2wbmp',
|
1241
|
+
'png2wbmp'),
|
1242
|
+
'GMP': ('gmp_abs',
|
1243
|
+
'gmp_add',
|
1244
|
+
'gmp_and',
|
1245
|
+
'gmp_clrbit',
|
1246
|
+
'gmp_cmp',
|
1247
|
+
'gmp_com',
|
1248
|
+
'gmp_div_q',
|
1249
|
+
'gmp_div_qr',
|
1250
|
+
'gmp_div_r',
|
1251
|
+
'gmp_div',
|
1252
|
+
'gmp_divexact',
|
1253
|
+
'gmp_fact',
|
1254
|
+
'gmp_gcd',
|
1255
|
+
'gmp_gcdext',
|
1256
|
+
'gmp_hamdist',
|
1257
|
+
'gmp_init',
|
1258
|
+
'gmp_intval',
|
1259
|
+
'gmp_invert',
|
1260
|
+
'gmp_jacobi',
|
1261
|
+
'gmp_legendre',
|
1262
|
+
'gmp_mod',
|
1263
|
+
'gmp_mul',
|
1264
|
+
'gmp_neg',
|
1265
|
+
'gmp_nextprime',
|
1266
|
+
'gmp_or',
|
1267
|
+
'gmp_perfect_square',
|
1268
|
+
'gmp_popcount',
|
1269
|
+
'gmp_pow',
|
1270
|
+
'gmp_powm',
|
1271
|
+
'gmp_prob_prime',
|
1272
|
+
'gmp_random',
|
1273
|
+
'gmp_scan0',
|
1274
|
+
'gmp_scan1',
|
1275
|
+
'gmp_setbit',
|
1276
|
+
'gmp_sign',
|
1277
|
+
'gmp_sqrt',
|
1278
|
+
'gmp_sqrtrem',
|
1279
|
+
'gmp_strval',
|
1280
|
+
'gmp_sub',
|
1281
|
+
'gmp_testbit',
|
1282
|
+
'gmp_xor'),
|
1283
|
+
'GeoIP': ('geoip_asnum_by_name',
|
1284
|
+
'geoip_continent_code_by_name',
|
1285
|
+
'geoip_country_code_by_name',
|
1286
|
+
'geoip_country_code3_by_name',
|
1287
|
+
'geoip_country_name_by_name',
|
1288
|
+
'geoip_database_info',
|
1289
|
+
'geoip_db_avail',
|
1290
|
+
'geoip_db_filename',
|
1291
|
+
'geoip_db_get_all_info',
|
1292
|
+
'geoip_domain_by_name',
|
1293
|
+
'geoip_id_by_name',
|
1294
|
+
'geoip_isp_by_name',
|
1295
|
+
'geoip_netspeedcell_by_name',
|
1296
|
+
'geoip_org_by_name',
|
1297
|
+
'geoip_record_by_name',
|
1298
|
+
'geoip_region_by_name',
|
1299
|
+
'geoip_region_name_by_code',
|
1300
|
+
'geoip_setup_custom_directory',
|
1301
|
+
'geoip_time_zone_by_country_and_region'),
|
1302
|
+
'Gettext': ('bind_textdomain_codeset',
|
1303
|
+
'bindtextdomain',
|
1304
|
+
'dcgettext',
|
1305
|
+
'dcngettext',
|
1306
|
+
'dgettext',
|
1307
|
+
'dngettext',
|
1308
|
+
'gettext',
|
1309
|
+
'ngettext',
|
1310
|
+
'textdomain'),
|
1311
|
+
'GnuPG': ('gnupg_adddecryptkey',
|
1312
|
+
'gnupg_addencryptkey',
|
1313
|
+
'gnupg_addsignkey',
|
1314
|
+
'gnupg_cleardecryptkeys',
|
1315
|
+
'gnupg_clearencryptkeys',
|
1316
|
+
'gnupg_clearsignkeys',
|
1317
|
+
'gnupg_decrypt',
|
1318
|
+
'gnupg_decryptverify',
|
1319
|
+
'gnupg_encrypt',
|
1320
|
+
'gnupg_encryptsign',
|
1321
|
+
'gnupg_export',
|
1322
|
+
'gnupg_geterror',
|
1323
|
+
'gnupg_getprotocol',
|
1324
|
+
'gnupg_import',
|
1325
|
+
'gnupg_init',
|
1326
|
+
'gnupg_keyinfo',
|
1327
|
+
'gnupg_setarmor',
|
1328
|
+
'gnupg_seterrormode',
|
1329
|
+
'gnupg_setsignmode',
|
1330
|
+
'gnupg_sign',
|
1331
|
+
'gnupg_verify'),
|
1332
|
+
'Gopher': ('gopher_parsedir',),
|
1333
|
+
'Grapheme': ('grapheme_extract',
|
1334
|
+
'grapheme_stripos',
|
1335
|
+
'grapheme_stristr',
|
1336
|
+
'grapheme_strlen',
|
1337
|
+
'grapheme_strpos',
|
1338
|
+
'grapheme_strripos',
|
1339
|
+
'grapheme_strrpos',
|
1340
|
+
'grapheme_strstr',
|
1341
|
+
'grapheme_substr'),
|
1342
|
+
'Gupnp': ('gupnp_context_get_host_ip',
|
1343
|
+
'gupnp_context_get_port',
|
1344
|
+
'gupnp_context_get_subscription_timeout',
|
1345
|
+
'gupnp_context_host_path',
|
1346
|
+
'gupnp_context_new',
|
1347
|
+
'gupnp_context_set_subscription_timeout',
|
1348
|
+
'gupnp_context_timeout_add',
|
1349
|
+
'gupnp_context_unhost_path',
|
1350
|
+
'gupnp_control_point_browse_start',
|
1351
|
+
'gupnp_control_point_browse_stop',
|
1352
|
+
'gupnp_control_point_callback_set',
|
1353
|
+
'gupnp_control_point_new',
|
1354
|
+
'gupnp_device_action_callback_set',
|
1355
|
+
'gupnp_device_info_get_service',
|
1356
|
+
'gupnp_device_info_get',
|
1357
|
+
'gupnp_root_device_get_available',
|
1358
|
+
'gupnp_root_device_get_relative_location',
|
1359
|
+
'gupnp_root_device_new',
|
1360
|
+
'gupnp_root_device_set_available',
|
1361
|
+
'gupnp_root_device_start',
|
1362
|
+
'gupnp_root_device_stop',
|
1363
|
+
'gupnp_service_action_get',
|
1364
|
+
'gupnp_service_action_return_error',
|
1365
|
+
'gupnp_service_action_return',
|
1366
|
+
'gupnp_service_action_set',
|
1367
|
+
'gupnp_service_freeze_notify',
|
1368
|
+
'gupnp_service_info_get_introspection',
|
1369
|
+
'gupnp_service_info_get',
|
1370
|
+
'gupnp_service_introspection_get_state_variable',
|
1371
|
+
'gupnp_service_notify',
|
1372
|
+
'gupnp_service_proxy_action_get',
|
1373
|
+
'gupnp_service_proxy_action_set',
|
1374
|
+
'gupnp_service_proxy_add_notify',
|
1375
|
+
'gupnp_service_proxy_callback_set',
|
1376
|
+
'gupnp_service_proxy_get_subscribed',
|
1377
|
+
'gupnp_service_proxy_remove_notify',
|
1378
|
+
'gupnp_service_proxy_set_subscribed',
|
1379
|
+
'gupnp_service_thaw_notify'),
|
1380
|
+
'HTTP': ('http_cache_etag',
|
1381
|
+
'http_cache_last_modified',
|
1382
|
+
'http_chunked_decode',
|
1383
|
+
'http_deflate',
|
1384
|
+
'http_inflate',
|
1385
|
+
'http_build_cookie',
|
1386
|
+
'http_date',
|
1387
|
+
'http_get_request_body_stream',
|
1388
|
+
'http_get_request_body',
|
1389
|
+
'http_get_request_headers',
|
1390
|
+
'http_match_etag',
|
1391
|
+
'http_match_modified',
|
1392
|
+
'http_match_request_header',
|
1393
|
+
'http_support',
|
1394
|
+
'http_negotiate_charset',
|
1395
|
+
'http_negotiate_content_type',
|
1396
|
+
'http_negotiate_language',
|
1397
|
+
'ob_deflatehandler',
|
1398
|
+
'ob_etaghandler',
|
1399
|
+
'ob_inflatehandler',
|
1400
|
+
'http_parse_cookie',
|
1401
|
+
'http_parse_headers',
|
1402
|
+
'http_parse_message',
|
1403
|
+
'http_parse_params',
|
1404
|
+
'http_persistent_handles_clean',
|
1405
|
+
'http_persistent_handles_count',
|
1406
|
+
'http_persistent_handles_ident',
|
1407
|
+
'http_get',
|
1408
|
+
'http_head',
|
1409
|
+
'http_post_data',
|
1410
|
+
'http_post_fields',
|
1411
|
+
'http_put_data',
|
1412
|
+
'http_put_file',
|
1413
|
+
'http_put_stream',
|
1414
|
+
'http_request_body_encode',
|
1415
|
+
'http_request_method_exists',
|
1416
|
+
'http_request_method_name',
|
1417
|
+
'http_request_method_register',
|
1418
|
+
'http_request_method_unregister',
|
1419
|
+
'http_request',
|
1420
|
+
'http_redirect',
|
1421
|
+
'http_send_content_disposition',
|
1422
|
+
'http_send_content_type',
|
1423
|
+
'http_send_data',
|
1424
|
+
'http_send_file',
|
1425
|
+
'http_send_last_modified',
|
1426
|
+
'http_send_status',
|
1427
|
+
'http_send_stream',
|
1428
|
+
'http_throttle',
|
1429
|
+
'http_build_str',
|
1430
|
+
'http_build_url'),
|
1431
|
+
'Hash': ('hash_algos',
|
1432
|
+
'hash_copy',
|
1433
|
+
'hash_file',
|
1434
|
+
'hash_final',
|
1435
|
+
'hash_hmac_file',
|
1436
|
+
'hash_hmac',
|
1437
|
+
'hash_init',
|
1438
|
+
'hash_pbkdf2',
|
1439
|
+
'hash_update_file',
|
1440
|
+
'hash_update_stream',
|
1441
|
+
'hash_update',
|
1442
|
+
'hash'),
|
1443
|
+
'Hyperwave': ('hw_Array2Objrec',
|
1444
|
+
'hw_changeobject',
|
1445
|
+
'hw_Children',
|
1446
|
+
'hw_ChildrenObj',
|
1447
|
+
'hw_Close',
|
1448
|
+
'hw_Connect',
|
1449
|
+
'hw_connection_info',
|
1450
|
+
'hw_cp',
|
1451
|
+
'hw_Deleteobject',
|
1452
|
+
'hw_DocByAnchor',
|
1453
|
+
'hw_DocByAnchorObj',
|
1454
|
+
'hw_Document_Attributes',
|
1455
|
+
'hw_Document_BodyTag',
|
1456
|
+
'hw_Document_Content',
|
1457
|
+
'hw_Document_SetContent',
|
1458
|
+
'hw_Document_Size',
|
1459
|
+
'hw_dummy',
|
1460
|
+
'hw_EditText',
|
1461
|
+
'hw_Error',
|
1462
|
+
'hw_ErrorMsg',
|
1463
|
+
'hw_Free_Document',
|
1464
|
+
'hw_GetAnchors',
|
1465
|
+
'hw_GetAnchorsObj',
|
1466
|
+
'hw_GetAndLock',
|
1467
|
+
'hw_GetChildColl',
|
1468
|
+
'hw_GetChildCollObj',
|
1469
|
+
'hw_GetChildDocColl',
|
1470
|
+
'hw_GetChildDocCollObj',
|
1471
|
+
'hw_GetObject',
|
1472
|
+
'hw_GetObjectByQuery',
|
1473
|
+
'hw_GetObjectByQueryColl',
|
1474
|
+
'hw_GetObjectByQueryCollObj',
|
1475
|
+
'hw_GetObjectByQueryObj',
|
1476
|
+
'hw_GetParents',
|
1477
|
+
'hw_GetParentsObj',
|
1478
|
+
'hw_getrellink',
|
1479
|
+
'hw_GetRemote',
|
1480
|
+
'hw_getremotechildren',
|
1481
|
+
'hw_GetSrcByDestObj',
|
1482
|
+
'hw_GetText',
|
1483
|
+
'hw_getusername',
|
1484
|
+
'hw_Identify',
|
1485
|
+
'hw_InCollections',
|
1486
|
+
'hw_Info',
|
1487
|
+
'hw_InsColl',
|
1488
|
+
'hw_InsDoc',
|
1489
|
+
'hw_insertanchors',
|
1490
|
+
'hw_InsertDocument',
|
1491
|
+
'hw_InsertObject',
|
1492
|
+
'hw_mapid',
|
1493
|
+
'hw_Modifyobject',
|
1494
|
+
'hw_mv',
|
1495
|
+
'hw_New_Document',
|
1496
|
+
'hw_objrec2array',
|
1497
|
+
'hw_Output_Document',
|
1498
|
+
'hw_pConnect',
|
1499
|
+
'hw_PipeDocument',
|
1500
|
+
'hw_Root',
|
1501
|
+
'hw_setlinkroot',
|
1502
|
+
'hw_stat',
|
1503
|
+
'hw_Unlock',
|
1504
|
+
'hw_Who'),
|
1505
|
+
'Hyperwave API': ('hwapi_attribute_new',
|
1506
|
+
'hwapi_content_new',
|
1507
|
+
'hwapi_hgcsp',
|
1508
|
+
'hwapi_object_new'),
|
1509
|
+
'IBM DB2': ('db2_autocommit',
|
1510
|
+
'db2_bind_param',
|
1511
|
+
'db2_client_info',
|
1512
|
+
'db2_close',
|
1513
|
+
'db2_column_privileges',
|
1514
|
+
'db2_columns',
|
1515
|
+
'db2_commit',
|
1516
|
+
'db2_conn_error',
|
1517
|
+
'db2_conn_errormsg',
|
1518
|
+
'db2_connect',
|
1519
|
+
'db2_cursor_type',
|
1520
|
+
'db2_escape_string',
|
1521
|
+
'db2_exec',
|
1522
|
+
'db2_execute',
|
1523
|
+
'db2_fetch_array',
|
1524
|
+
'db2_fetch_assoc',
|
1525
|
+
'db2_fetch_both',
|
1526
|
+
'db2_fetch_object',
|
1527
|
+
'db2_fetch_row',
|
1528
|
+
'db2_field_display_size',
|
1529
|
+
'db2_field_name',
|
1530
|
+
'db2_field_num',
|
1531
|
+
'db2_field_precision',
|
1532
|
+
'db2_field_scale',
|
1533
|
+
'db2_field_type',
|
1534
|
+
'db2_field_width',
|
1535
|
+
'db2_foreign_keys',
|
1536
|
+
'db2_free_result',
|
1537
|
+
'db2_free_stmt',
|
1538
|
+
'db2_get_option',
|
1539
|
+
'db2_last_insert_id',
|
1540
|
+
'db2_lob_read',
|
1541
|
+
'db2_next_result',
|
1542
|
+
'db2_num_fields',
|
1543
|
+
'db2_num_rows',
|
1544
|
+
'db2_pclose',
|
1545
|
+
'db2_pconnect',
|
1546
|
+
'db2_prepare',
|
1547
|
+
'db2_primary_keys',
|
1548
|
+
'db2_procedure_columns',
|
1549
|
+
'db2_procedures',
|
1550
|
+
'db2_result',
|
1551
|
+
'db2_rollback',
|
1552
|
+
'db2_server_info',
|
1553
|
+
'db2_set_option',
|
1554
|
+
'db2_special_columns',
|
1555
|
+
'db2_statistics',
|
1556
|
+
'db2_stmt_error',
|
1557
|
+
'db2_stmt_errormsg',
|
1558
|
+
'db2_table_privileges',
|
1559
|
+
'db2_tables'),
|
1560
|
+
'ID3': ('id3_get_frame_long_name',
|
1561
|
+
'id3_get_frame_short_name',
|
1562
|
+
'id3_get_genre_id',
|
1563
|
+
'id3_get_genre_list',
|
1564
|
+
'id3_get_genre_name',
|
1565
|
+
'id3_get_tag',
|
1566
|
+
'id3_get_version',
|
1567
|
+
'id3_remove_tag',
|
1568
|
+
'id3_set_tag'),
|
1569
|
+
'IDN': ('grapheme_substr', 'idn_to_ascii', 'idn_to_unicode', 'idn_to_utf8'),
|
1570
|
+
'IIS': ('iis_add_server',
|
1571
|
+
'iis_get_dir_security',
|
1572
|
+
'iis_get_script_map',
|
1573
|
+
'iis_get_server_by_comment',
|
1574
|
+
'iis_get_server_by_path',
|
1575
|
+
'iis_get_server_rights',
|
1576
|
+
'iis_get_service_state',
|
1577
|
+
'iis_remove_server',
|
1578
|
+
'iis_set_app_settings',
|
1579
|
+
'iis_set_dir_security',
|
1580
|
+
'iis_set_script_map',
|
1581
|
+
'iis_set_server_rights',
|
1582
|
+
'iis_start_server',
|
1583
|
+
'iis_start_service',
|
1584
|
+
'iis_stop_server',
|
1585
|
+
'iis_stop_service'),
|
1586
|
+
'IMAP': ('imap_8bit',
|
1587
|
+
'imap_alerts',
|
1588
|
+
'imap_append',
|
1589
|
+
'imap_base64',
|
1590
|
+
'imap_binary',
|
1591
|
+
'imap_body',
|
1592
|
+
'imap_bodystruct',
|
1593
|
+
'imap_check',
|
1594
|
+
'imap_clearflag_full',
|
1595
|
+
'imap_close',
|
1596
|
+
'imap_create',
|
1597
|
+
'imap_createmailbox',
|
1598
|
+
'imap_delete',
|
1599
|
+
'imap_deletemailbox',
|
1600
|
+
'imap_errors',
|
1601
|
+
'imap_expunge',
|
1602
|
+
'imap_fetch_overview',
|
1603
|
+
'imap_fetchbody',
|
1604
|
+
'imap_fetchheader',
|
1605
|
+
'imap_fetchmime',
|
1606
|
+
'imap_fetchstructure',
|
1607
|
+
'imap_fetchtext',
|
1608
|
+
'imap_gc',
|
1609
|
+
'imap_get_quota',
|
1610
|
+
'imap_get_quotaroot',
|
1611
|
+
'imap_getacl',
|
1612
|
+
'imap_getmailboxes',
|
1613
|
+
'imap_getsubscribed',
|
1614
|
+
'imap_header',
|
1615
|
+
'imap_headerinfo',
|
1616
|
+
'imap_headers',
|
1617
|
+
'imap_last_error',
|
1618
|
+
'imap_list',
|
1619
|
+
'imap_listmailbox',
|
1620
|
+
'imap_listscan',
|
1621
|
+
'imap_listsubscribed',
|
1622
|
+
'imap_lsub',
|
1623
|
+
'imap_mail_compose',
|
1624
|
+
'imap_mail_copy',
|
1625
|
+
'imap_mail_move',
|
1626
|
+
'imap_mail',
|
1627
|
+
'imap_mailboxmsginfo',
|
1628
|
+
'imap_mime_header_decode',
|
1629
|
+
'imap_msgno',
|
1630
|
+
'imap_num_msg',
|
1631
|
+
'imap_num_recent',
|
1632
|
+
'imap_open',
|
1633
|
+
'imap_ping',
|
1634
|
+
'imap_qprint',
|
1635
|
+
'imap_rename',
|
1636
|
+
'imap_renamemailbox',
|
1637
|
+
'imap_reopen',
|
1638
|
+
'imap_rfc822_parse_adrlist',
|
1639
|
+
'imap_rfc822_parse_headers',
|
1640
|
+
'imap_rfc822_write_address',
|
1641
|
+
'imap_savebody',
|
1642
|
+
'imap_scan',
|
1643
|
+
'imap_scanmailbox',
|
1644
|
+
'imap_search',
|
1645
|
+
'imap_set_quota',
|
1646
|
+
'imap_setacl',
|
1647
|
+
'imap_setflag_full',
|
1648
|
+
'imap_sort',
|
1649
|
+
'imap_status',
|
1650
|
+
'imap_subscribe',
|
1651
|
+
'imap_thread',
|
1652
|
+
'imap_timeout',
|
1653
|
+
'imap_uid',
|
1654
|
+
'imap_undelete',
|
1655
|
+
'imap_unsubscribe',
|
1656
|
+
'imap_utf7_decode',
|
1657
|
+
'imap_utf7_encode',
|
1658
|
+
'imap_utf8'),
|
1659
|
+
'Informix': ('ifx_affected_rows',
|
1660
|
+
'ifx_blobinfile_mode',
|
1661
|
+
'ifx_byteasvarchar',
|
1662
|
+
'ifx_close',
|
1663
|
+
'ifx_connect',
|
1664
|
+
'ifx_copy_blob',
|
1665
|
+
'ifx_create_blob',
|
1666
|
+
'ifx_create_char',
|
1667
|
+
'ifx_do',
|
1668
|
+
'ifx_error',
|
1669
|
+
'ifx_errormsg',
|
1670
|
+
'ifx_fetch_row',
|
1671
|
+
'ifx_fieldproperties',
|
1672
|
+
'ifx_fieldtypes',
|
1673
|
+
'ifx_free_blob',
|
1674
|
+
'ifx_free_char',
|
1675
|
+
'ifx_free_result',
|
1676
|
+
'ifx_get_blob',
|
1677
|
+
'ifx_get_char',
|
1678
|
+
'ifx_getsqlca',
|
1679
|
+
'ifx_htmltbl_result',
|
1680
|
+
'ifx_nullformat',
|
1681
|
+
'ifx_num_fields',
|
1682
|
+
'ifx_num_rows',
|
1683
|
+
'ifx_pconnect',
|
1684
|
+
'ifx_prepare',
|
1685
|
+
'ifx_query',
|
1686
|
+
'ifx_textasvarchar',
|
1687
|
+
'ifx_update_blob',
|
1688
|
+
'ifx_update_char',
|
1689
|
+
'ifxus_close_slob',
|
1690
|
+
'ifxus_create_slob',
|
1691
|
+
'ifxus_free_slob',
|
1692
|
+
'ifxus_open_slob',
|
1693
|
+
'ifxus_read_slob',
|
1694
|
+
'ifxus_seek_slob',
|
1695
|
+
'ifxus_tell_slob',
|
1696
|
+
'ifxus_write_slob'),
|
1697
|
+
'Ingres': ('ingres_autocommit_state',
|
1698
|
+
'ingres_autocommit',
|
1699
|
+
'ingres_charset',
|
1700
|
+
'ingres_close',
|
1701
|
+
'ingres_commit',
|
1702
|
+
'ingres_connect',
|
1703
|
+
'ingres_cursor',
|
1704
|
+
'ingres_errno',
|
1705
|
+
'ingres_error',
|
1706
|
+
'ingres_errsqlstate',
|
1707
|
+
'ingres_escape_string',
|
1708
|
+
'ingres_execute',
|
1709
|
+
'ingres_fetch_array',
|
1710
|
+
'ingres_fetch_assoc',
|
1711
|
+
'ingres_fetch_object',
|
1712
|
+
'ingres_fetch_proc_return',
|
1713
|
+
'ingres_fetch_row',
|
1714
|
+
'ingres_field_length',
|
1715
|
+
'ingres_field_name',
|
1716
|
+
'ingres_field_nullable',
|
1717
|
+
'ingres_field_precision',
|
1718
|
+
'ingres_field_scale',
|
1719
|
+
'ingres_field_type',
|
1720
|
+
'ingres_free_result',
|
1721
|
+
'ingres_next_error',
|
1722
|
+
'ingres_num_fields',
|
1723
|
+
'ingres_num_rows',
|
1724
|
+
'ingres_pconnect',
|
1725
|
+
'ingres_prepare',
|
1726
|
+
'ingres_query',
|
1727
|
+
'ingres_result_seek',
|
1728
|
+
'ingres_rollback',
|
1729
|
+
'ingres_set_environment',
|
1730
|
+
'ingres_unbuffered_query'),
|
1731
|
+
'Inotify': ('inotify_add_watch',
|
1732
|
+
'inotify_init',
|
1733
|
+
'inotify_queue_len',
|
1734
|
+
'inotify_read',
|
1735
|
+
'inotify_rm_watch'),
|
1736
|
+
'JSON': ('json_decode',
|
1737
|
+
'json_encode',
|
1738
|
+
'json_last_error_msg',
|
1739
|
+
'json_last_error'),
|
1740
|
+
'Java': ('java_last_exception_clear', 'java_last_exception_get'),
|
1741
|
+
'Judy': ('judy_type', 'judy_version'),
|
1742
|
+
'KADM5': ('kadm5_chpass_principal',
|
1743
|
+
'kadm5_create_principal',
|
1744
|
+
'kadm5_delete_principal',
|
1745
|
+
'kadm5_destroy',
|
1746
|
+
'kadm5_flush',
|
1747
|
+
'kadm5_get_policies',
|
1748
|
+
'kadm5_get_principal',
|
1749
|
+
'kadm5_get_principals',
|
1750
|
+
'kadm5_init_with_password',
|
1751
|
+
'kadm5_modify_principal'),
|
1752
|
+
'LDAP': ('ldap_8859_to_t61',
|
1753
|
+
'ldap_add',
|
1754
|
+
'ldap_bind',
|
1755
|
+
'ldap_close',
|
1756
|
+
'ldap_compare',
|
1757
|
+
'ldap_connect',
|
1758
|
+
'ldap_control_paged_result_response',
|
1759
|
+
'ldap_control_paged_result',
|
1760
|
+
'ldap_count_entries',
|
1761
|
+
'ldap_delete',
|
1762
|
+
'ldap_dn2ufn',
|
1763
|
+
'ldap_err2str',
|
1764
|
+
'ldap_errno',
|
1765
|
+
'ldap_error',
|
1766
|
+
'ldap_explode_dn',
|
1767
|
+
'ldap_first_attribute',
|
1768
|
+
'ldap_first_entry',
|
1769
|
+
'ldap_first_reference',
|
1770
|
+
'ldap_free_result',
|
1771
|
+
'ldap_get_attributes',
|
1772
|
+
'ldap_get_dn',
|
1773
|
+
'ldap_get_entries',
|
1774
|
+
'ldap_get_option',
|
1775
|
+
'ldap_get_values_len',
|
1776
|
+
'ldap_get_values',
|
1777
|
+
'ldap_list',
|
1778
|
+
'ldap_mod_add',
|
1779
|
+
'ldap_mod_del',
|
1780
|
+
'ldap_mod_replace',
|
1781
|
+
'ldap_modify',
|
1782
|
+
'ldap_next_attribute',
|
1783
|
+
'ldap_next_entry',
|
1784
|
+
'ldap_next_reference',
|
1785
|
+
'ldap_parse_reference',
|
1786
|
+
'ldap_parse_result',
|
1787
|
+
'ldap_read',
|
1788
|
+
'ldap_rename',
|
1789
|
+
'ldap_sasl_bind',
|
1790
|
+
'ldap_search',
|
1791
|
+
'ldap_set_option',
|
1792
|
+
'ldap_set_rebind_proc',
|
1793
|
+
'ldap_sort',
|
1794
|
+
'ldap_start_tls',
|
1795
|
+
'ldap_t61_to_8859',
|
1796
|
+
'ldap_unbind'),
|
1797
|
+
'LZF': ('lzf_compress', 'lzf_decompress', 'lzf_optimized_for'),
|
1798
|
+
'Libevent': ('event_add',
|
1799
|
+
'event_base_free',
|
1800
|
+
'event_base_loop',
|
1801
|
+
'event_base_loopbreak',
|
1802
|
+
'event_base_loopexit',
|
1803
|
+
'event_base_new',
|
1804
|
+
'event_base_priority_init',
|
1805
|
+
'event_base_set',
|
1806
|
+
'event_buffer_base_set',
|
1807
|
+
'event_buffer_disable',
|
1808
|
+
'event_buffer_enable',
|
1809
|
+
'event_buffer_fd_set',
|
1810
|
+
'event_buffer_free',
|
1811
|
+
'event_buffer_new',
|
1812
|
+
'event_buffer_priority_set',
|
1813
|
+
'event_buffer_read',
|
1814
|
+
'event_buffer_set_callback',
|
1815
|
+
'event_buffer_timeout_set',
|
1816
|
+
'event_buffer_watermark_set',
|
1817
|
+
'event_buffer_write',
|
1818
|
+
'event_del',
|
1819
|
+
'event_free',
|
1820
|
+
'event_new',
|
1821
|
+
'event_set'),
|
1822
|
+
'Lotus Notes': ('notes_body',
|
1823
|
+
'notes_copy_db',
|
1824
|
+
'notes_create_db',
|
1825
|
+
'notes_create_note',
|
1826
|
+
'notes_drop_db',
|
1827
|
+
'notes_find_note',
|
1828
|
+
'notes_header_info',
|
1829
|
+
'notes_list_msgs',
|
1830
|
+
'notes_mark_read',
|
1831
|
+
'notes_mark_unread',
|
1832
|
+
'notes_nav_create',
|
1833
|
+
'notes_search',
|
1834
|
+
'notes_unread',
|
1835
|
+
'notes_version'),
|
1836
|
+
'MCVE': ('m_checkstatus',
|
1837
|
+
'm_completeauthorizations',
|
1838
|
+
'm_connect',
|
1839
|
+
'm_connectionerror',
|
1840
|
+
'm_deletetrans',
|
1841
|
+
'm_destroyconn',
|
1842
|
+
'm_destroyengine',
|
1843
|
+
'm_getcell',
|
1844
|
+
'm_getcellbynum',
|
1845
|
+
'm_getcommadelimited',
|
1846
|
+
'm_getheader',
|
1847
|
+
'm_initconn',
|
1848
|
+
'm_initengine',
|
1849
|
+
'm_iscommadelimited',
|
1850
|
+
'm_maxconntimeout',
|
1851
|
+
'm_monitor',
|
1852
|
+
'm_numcolumns',
|
1853
|
+
'm_numrows',
|
1854
|
+
'm_parsecommadelimited',
|
1855
|
+
'm_responsekeys',
|
1856
|
+
'm_responseparam',
|
1857
|
+
'm_returnstatus',
|
1858
|
+
'm_setblocking',
|
1859
|
+
'm_setdropfile',
|
1860
|
+
'm_setip',
|
1861
|
+
'm_setssl_cafile',
|
1862
|
+
'm_setssl_files',
|
1863
|
+
'm_setssl',
|
1864
|
+
'm_settimeout',
|
1865
|
+
'm_sslcert_gen_hash',
|
1866
|
+
'm_transactionssent',
|
1867
|
+
'm_transinqueue',
|
1868
|
+
'm_transkeyval',
|
1869
|
+
'm_transnew',
|
1870
|
+
'm_transsend',
|
1871
|
+
'm_uwait',
|
1872
|
+
'm_validateidentifier',
|
1873
|
+
'm_verifyconnection',
|
1874
|
+
'm_verifysslcert'),
|
1875
|
+
'Mail': ('ezmlm_hash', 'mail'),
|
1876
|
+
'Mailparse': ('mailparse_determine_best_xfer_encoding',
|
1877
|
+
'mailparse_msg_create',
|
1878
|
+
'mailparse_msg_extract_part_file',
|
1879
|
+
'mailparse_msg_extract_part',
|
1880
|
+
'mailparse_msg_extract_whole_part_file',
|
1881
|
+
'mailparse_msg_free',
|
1882
|
+
'mailparse_msg_get_part_data',
|
1883
|
+
'mailparse_msg_get_part',
|
1884
|
+
'mailparse_msg_get_structure',
|
1885
|
+
'mailparse_msg_parse_file',
|
1886
|
+
'mailparse_msg_parse',
|
1887
|
+
'mailparse_rfc822_parse_addresses',
|
1888
|
+
'mailparse_stream_encode',
|
1889
|
+
'mailparse_uudecode_all'),
|
1890
|
+
'Math': ('abs',
|
1891
|
+
'acos',
|
1892
|
+
'acosh',
|
1893
|
+
'asin',
|
1894
|
+
'asinh',
|
1895
|
+
'atan2',
|
1896
|
+
'atan',
|
1897
|
+
'atanh',
|
1898
|
+
'base_convert',
|
1899
|
+
'bindec',
|
1900
|
+
'ceil',
|
1901
|
+
'cos',
|
1902
|
+
'cosh',
|
1903
|
+
'decbin',
|
1904
|
+
'dechex',
|
1905
|
+
'decoct',
|
1906
|
+
'deg2rad',
|
1907
|
+
'exp',
|
1908
|
+
'expm1',
|
1909
|
+
'floor',
|
1910
|
+
'fmod',
|
1911
|
+
'getrandmax',
|
1912
|
+
'hexdec',
|
1913
|
+
'hypot',
|
1914
|
+
'is_finite',
|
1915
|
+
'is_infinite',
|
1916
|
+
'is_nan',
|
1917
|
+
'lcg_value',
|
1918
|
+
'log10',
|
1919
|
+
'log1p',
|
1920
|
+
'log',
|
1921
|
+
'max',
|
1922
|
+
'min',
|
1923
|
+
'mt_getrandmax',
|
1924
|
+
'mt_rand',
|
1925
|
+
'mt_srand',
|
1926
|
+
'octdec',
|
1927
|
+
'pi',
|
1928
|
+
'pow',
|
1929
|
+
'rad2deg',
|
1930
|
+
'rand',
|
1931
|
+
'round',
|
1932
|
+
'sin',
|
1933
|
+
'sinh',
|
1934
|
+
'sqrt',
|
1935
|
+
'srand',
|
1936
|
+
'tan',
|
1937
|
+
'tanh'),
|
1938
|
+
'MaxDB': ('maxdb_affected_rows',
|
1939
|
+
'maxdb_autocommit',
|
1940
|
+
'maxdb_bind_param',
|
1941
|
+
'maxdb_bind_result',
|
1942
|
+
'maxdb_change_user',
|
1943
|
+
'maxdb_character_set_name',
|
1944
|
+
'maxdb_client_encoding',
|
1945
|
+
'maxdb_close_long_data',
|
1946
|
+
'maxdb_close',
|
1947
|
+
'maxdb_commit',
|
1948
|
+
'maxdb_connect_errno',
|
1949
|
+
'maxdb_connect_error',
|
1950
|
+
'maxdb_connect',
|
1951
|
+
'maxdb_data_seek',
|
1952
|
+
'maxdb_debug',
|
1953
|
+
'maxdb_disable_reads_from_master',
|
1954
|
+
'maxdb_disable_rpl_parse',
|
1955
|
+
'maxdb_dump_debug_info',
|
1956
|
+
'maxdb_embedded_connect',
|
1957
|
+
'maxdb_enable_reads_from_master',
|
1958
|
+
'maxdb_enable_rpl_parse',
|
1959
|
+
'maxdb_errno',
|
1960
|
+
'maxdb_error',
|
1961
|
+
'maxdb_escape_string',
|
1962
|
+
'maxdb_execute',
|
1963
|
+
'maxdb_fetch_array',
|
1964
|
+
'maxdb_fetch_assoc',
|
1965
|
+
'maxdb_fetch_field_direct',
|
1966
|
+
'maxdb_fetch_field',
|
1967
|
+
'maxdb_fetch_fields',
|
1968
|
+
'maxdb_fetch_lengths',
|
1969
|
+
'maxdb_fetch_object',
|
1970
|
+
'maxdb_fetch_row',
|
1971
|
+
'maxdb_fetch',
|
1972
|
+
'maxdb_field_count',
|
1973
|
+
'maxdb_field_seek',
|
1974
|
+
'maxdb_field_tell',
|
1975
|
+
'maxdb_free_result',
|
1976
|
+
'maxdb_get_client_info',
|
1977
|
+
'maxdb_get_client_version',
|
1978
|
+
'maxdb_get_host_info',
|
1979
|
+
'maxdb_get_metadata',
|
1980
|
+
'maxdb_get_proto_info',
|
1981
|
+
'maxdb_get_server_info',
|
1982
|
+
'maxdb_get_server_version',
|
1983
|
+
'maxdb_info',
|
1984
|
+
'maxdb_init',
|
1985
|
+
'maxdb_insert_id',
|
1986
|
+
'maxdb_kill',
|
1987
|
+
'maxdb_master_query',
|
1988
|
+
'maxdb_more_results',
|
1989
|
+
'maxdb_multi_query',
|
1990
|
+
'maxdb_next_result',
|
1991
|
+
'maxdb_num_fields',
|
1992
|
+
'maxdb_num_rows',
|
1993
|
+
'maxdb_options',
|
1994
|
+
'maxdb_param_count',
|
1995
|
+
'maxdb_ping',
|
1996
|
+
'maxdb_prepare',
|
1997
|
+
'maxdb_query',
|
1998
|
+
'maxdb_real_connect',
|
1999
|
+
'maxdb_real_escape_string',
|
2000
|
+
'maxdb_real_query',
|
2001
|
+
'maxdb_report',
|
2002
|
+
'maxdb_rollback',
|
2003
|
+
'maxdb_rpl_parse_enabled',
|
2004
|
+
'maxdb_rpl_probe',
|
2005
|
+
'maxdb_rpl_query_type',
|
2006
|
+
'maxdb_select_db',
|
2007
|
+
'maxdb_send_long_data',
|
2008
|
+
'maxdb_send_query',
|
2009
|
+
'maxdb_server_end',
|
2010
|
+
'maxdb_server_init',
|
2011
|
+
'maxdb_set_opt',
|
2012
|
+
'maxdb_sqlstate',
|
2013
|
+
'maxdb_ssl_set',
|
2014
|
+
'maxdb_stat',
|
2015
|
+
'maxdb_stmt_affected_rows',
|
2016
|
+
'maxdb_stmt_bind_param',
|
2017
|
+
'maxdb_stmt_bind_result',
|
2018
|
+
'maxdb_stmt_close_long_data',
|
2019
|
+
'maxdb_stmt_close',
|
2020
|
+
'maxdb_stmt_data_seek',
|
2021
|
+
'maxdb_stmt_errno',
|
2022
|
+
'maxdb_stmt_error',
|
2023
|
+
'maxdb_stmt_execute',
|
2024
|
+
'maxdb_stmt_fetch',
|
2025
|
+
'maxdb_stmt_free_result',
|
2026
|
+
'maxdb_stmt_init',
|
2027
|
+
'maxdb_stmt_num_rows',
|
2028
|
+
'maxdb_stmt_param_count',
|
2029
|
+
'maxdb_stmt_prepare',
|
2030
|
+
'maxdb_stmt_reset',
|
2031
|
+
'maxdb_stmt_result_metadata',
|
2032
|
+
'maxdb_stmt_send_long_data',
|
2033
|
+
'maxdb_stmt_sqlstate',
|
2034
|
+
'maxdb_stmt_store_result',
|
2035
|
+
'maxdb_store_result',
|
2036
|
+
'maxdb_thread_id',
|
2037
|
+
'maxdb_thread_safe',
|
2038
|
+
'maxdb_use_result',
|
2039
|
+
'maxdb_warning_count'),
|
2040
|
+
'Mcrypt': ('mcrypt_cbc',
|
2041
|
+
'mcrypt_cfb',
|
2042
|
+
'mcrypt_create_iv',
|
2043
|
+
'mcrypt_decrypt',
|
2044
|
+
'mcrypt_ecb',
|
2045
|
+
'mcrypt_enc_get_algorithms_name',
|
2046
|
+
'mcrypt_enc_get_block_size',
|
2047
|
+
'mcrypt_enc_get_iv_size',
|
2048
|
+
'mcrypt_enc_get_key_size',
|
2049
|
+
'mcrypt_enc_get_modes_name',
|
2050
|
+
'mcrypt_enc_get_supported_key_sizes',
|
2051
|
+
'mcrypt_enc_is_block_algorithm_mode',
|
2052
|
+
'mcrypt_enc_is_block_algorithm',
|
2053
|
+
'mcrypt_enc_is_block_mode',
|
2054
|
+
'mcrypt_enc_self_test',
|
2055
|
+
'mcrypt_encrypt',
|
2056
|
+
'mcrypt_generic_deinit',
|
2057
|
+
'mcrypt_generic_end',
|
2058
|
+
'mcrypt_generic_init',
|
2059
|
+
'mcrypt_generic',
|
2060
|
+
'mcrypt_get_block_size',
|
2061
|
+
'mcrypt_get_cipher_name',
|
2062
|
+
'mcrypt_get_iv_size',
|
2063
|
+
'mcrypt_get_key_size',
|
2064
|
+
'mcrypt_list_algorithms',
|
2065
|
+
'mcrypt_list_modes',
|
2066
|
+
'mcrypt_module_close',
|
2067
|
+
'mcrypt_module_get_algo_block_size',
|
2068
|
+
'mcrypt_module_get_algo_key_size',
|
2069
|
+
'mcrypt_module_get_supported_key_sizes',
|
2070
|
+
'mcrypt_module_is_block_algorithm_mode',
|
2071
|
+
'mcrypt_module_is_block_algorithm',
|
2072
|
+
'mcrypt_module_is_block_mode',
|
2073
|
+
'mcrypt_module_open',
|
2074
|
+
'mcrypt_module_self_test',
|
2075
|
+
'mcrypt_ofb',
|
2076
|
+
'mdecrypt_generic'),
|
2077
|
+
'Memcache': ('memcache_debug',),
|
2078
|
+
'Mhash': ('mhash_count',
|
2079
|
+
'mhash_get_block_size',
|
2080
|
+
'mhash_get_hash_name',
|
2081
|
+
'mhash_keygen_s2k',
|
2082
|
+
'mhash'),
|
2083
|
+
'Ming': ('ming_keypress',
|
2084
|
+
'ming_setcubicthreshold',
|
2085
|
+
'ming_setscale',
|
2086
|
+
'ming_setswfcompression',
|
2087
|
+
'ming_useconstants',
|
2088
|
+
'ming_useswfversion'),
|
2089
|
+
'Misc.': ('connection_aborted',
|
2090
|
+
'connection_status',
|
2091
|
+
'connection_timeout',
|
2092
|
+
'constant',
|
2093
|
+
'define',
|
2094
|
+
'defined',
|
2095
|
+
'die',
|
2096
|
+
'eval',
|
2097
|
+
'exit',
|
2098
|
+
'get_browser',
|
2099
|
+
'__halt_compiler',
|
2100
|
+
'highlight_file',
|
2101
|
+
'highlight_string',
|
2102
|
+
'ignore_user_abort',
|
2103
|
+
'pack',
|
2104
|
+
'php_check_syntax',
|
2105
|
+
'php_strip_whitespace',
|
2106
|
+
'show_source',
|
2107
|
+
'sleep',
|
2108
|
+
'sys_getloadavg',
|
2109
|
+
'time_nanosleep',
|
2110
|
+
'time_sleep_until',
|
2111
|
+
'uniqid',
|
2112
|
+
'unpack',
|
2113
|
+
'usleep'),
|
2114
|
+
'Mongo': ('bson_decode', 'bson_encode'),
|
2115
|
+
'Msession': ('msession_connect',
|
2116
|
+
'msession_count',
|
2117
|
+
'msession_create',
|
2118
|
+
'msession_destroy',
|
2119
|
+
'msession_disconnect',
|
2120
|
+
'msession_find',
|
2121
|
+
'msession_get_array',
|
2122
|
+
'msession_get_data',
|
2123
|
+
'msession_get',
|
2124
|
+
'msession_inc',
|
2125
|
+
'msession_list',
|
2126
|
+
'msession_listvar',
|
2127
|
+
'msession_lock',
|
2128
|
+
'msession_plugin',
|
2129
|
+
'msession_randstr',
|
2130
|
+
'msession_set_array',
|
2131
|
+
'msession_set_data',
|
2132
|
+
'msession_set',
|
2133
|
+
'msession_timeout',
|
2134
|
+
'msession_uniq',
|
2135
|
+
'msession_unlock'),
|
2136
|
+
'Mssql': ('mssql_bind',
|
2137
|
+
'mssql_close',
|
2138
|
+
'mssql_connect',
|
2139
|
+
'mssql_data_seek',
|
2140
|
+
'mssql_execute',
|
2141
|
+
'mssql_fetch_array',
|
2142
|
+
'mssql_fetch_assoc',
|
2143
|
+
'mssql_fetch_batch',
|
2144
|
+
'mssql_fetch_field',
|
2145
|
+
'mssql_fetch_object',
|
2146
|
+
'mssql_fetch_row',
|
2147
|
+
'mssql_field_length',
|
2148
|
+
'mssql_field_name',
|
2149
|
+
'mssql_field_seek',
|
2150
|
+
'mssql_field_type',
|
2151
|
+
'mssql_free_result',
|
2152
|
+
'mssql_free_statement',
|
2153
|
+
'mssql_get_last_message',
|
2154
|
+
'mssql_guid_string',
|
2155
|
+
'mssql_init',
|
2156
|
+
'mssql_min_error_severity',
|
2157
|
+
'mssql_min_message_severity',
|
2158
|
+
'mssql_next_result',
|
2159
|
+
'mssql_num_fields',
|
2160
|
+
'mssql_num_rows',
|
2161
|
+
'mssql_pconnect',
|
2162
|
+
'mssql_query',
|
2163
|
+
'mssql_result',
|
2164
|
+
'mssql_rows_affected',
|
2165
|
+
'mssql_select_db'),
|
2166
|
+
'Multibyte String': ('mb_check_encoding',
|
2167
|
+
'mb_convert_case',
|
2168
|
+
'mb_convert_encoding',
|
2169
|
+
'mb_convert_kana',
|
2170
|
+
'mb_convert_variables',
|
2171
|
+
'mb_decode_mimeheader',
|
2172
|
+
'mb_decode_numericentity',
|
2173
|
+
'mb_detect_encoding',
|
2174
|
+
'mb_detect_order',
|
2175
|
+
'mb_encode_mimeheader',
|
2176
|
+
'mb_encode_numericentity',
|
2177
|
+
'mb_encoding_aliases',
|
2178
|
+
'mb_ereg_match',
|
2179
|
+
'mb_ereg_replace_callback',
|
2180
|
+
'mb_ereg_replace',
|
2181
|
+
'mb_ereg_search_getpos',
|
2182
|
+
'mb_ereg_search_getregs',
|
2183
|
+
'mb_ereg_search_init',
|
2184
|
+
'mb_ereg_search_pos',
|
2185
|
+
'mb_ereg_search_regs',
|
2186
|
+
'mb_ereg_search_setpos',
|
2187
|
+
'mb_ereg_search',
|
2188
|
+
'mb_ereg',
|
2189
|
+
'mb_eregi_replace',
|
2190
|
+
'mb_eregi',
|
2191
|
+
'mb_get_info',
|
2192
|
+
'mb_http_input',
|
2193
|
+
'mb_http_output',
|
2194
|
+
'mb_internal_encoding',
|
2195
|
+
'mb_language',
|
2196
|
+
'mb_list_encodings',
|
2197
|
+
'mb_output_handler',
|
2198
|
+
'mb_parse_str',
|
2199
|
+
'mb_preferred_mime_name',
|
2200
|
+
'mb_regex_encoding',
|
2201
|
+
'mb_regex_set_options',
|
2202
|
+
'mb_send_mail',
|
2203
|
+
'mb_split',
|
2204
|
+
'mb_strcut',
|
2205
|
+
'mb_strimwidth',
|
2206
|
+
'mb_stripos',
|
2207
|
+
'mb_stristr',
|
2208
|
+
'mb_strlen',
|
2209
|
+
'mb_strpos',
|
2210
|
+
'mb_strrchr',
|
2211
|
+
'mb_strrichr',
|
2212
|
+
'mb_strripos',
|
2213
|
+
'mb_strrpos',
|
2214
|
+
'mb_strstr',
|
2215
|
+
'mb_strtolower',
|
2216
|
+
'mb_strtoupper',
|
2217
|
+
'mb_strwidth',
|
2218
|
+
'mb_substitute_character',
|
2219
|
+
'mb_substr_count',
|
2220
|
+
'mb_substr'),
|
2221
|
+
'MySQL': ('mysql_affected_rows',
|
2222
|
+
'mysql_client_encoding',
|
2223
|
+
'mysql_close',
|
2224
|
+
'mysql_connect',
|
2225
|
+
'mysql_create_db',
|
2226
|
+
'mysql_data_seek',
|
2227
|
+
'mysql_db_name',
|
2228
|
+
'mysql_db_query',
|
2229
|
+
'mysql_drop_db',
|
2230
|
+
'mysql_errno',
|
2231
|
+
'mysql_error',
|
2232
|
+
'mysql_escape_string',
|
2233
|
+
'mysql_fetch_array',
|
2234
|
+
'mysql_fetch_assoc',
|
2235
|
+
'mysql_fetch_field',
|
2236
|
+
'mysql_fetch_lengths',
|
2237
|
+
'mysql_fetch_object',
|
2238
|
+
'mysql_fetch_row',
|
2239
|
+
'mysql_field_flags',
|
2240
|
+
'mysql_field_len',
|
2241
|
+
'mysql_field_name',
|
2242
|
+
'mysql_field_seek',
|
2243
|
+
'mysql_field_table',
|
2244
|
+
'mysql_field_type',
|
2245
|
+
'mysql_free_result',
|
2246
|
+
'mysql_get_client_info',
|
2247
|
+
'mysql_get_host_info',
|
2248
|
+
'mysql_get_proto_info',
|
2249
|
+
'mysql_get_server_info',
|
2250
|
+
'mysql_info',
|
2251
|
+
'mysql_insert_id',
|
2252
|
+
'mysql_list_dbs',
|
2253
|
+
'mysql_list_fields',
|
2254
|
+
'mysql_list_processes',
|
2255
|
+
'mysql_list_tables',
|
2256
|
+
'mysql_num_fields',
|
2257
|
+
'mysql_num_rows',
|
2258
|
+
'mysql_pconnect',
|
2259
|
+
'mysql_ping',
|
2260
|
+
'mysql_query',
|
2261
|
+
'mysql_real_escape_string',
|
2262
|
+
'mysql_result',
|
2263
|
+
'mysql_select_db',
|
2264
|
+
'mysql_set_charset',
|
2265
|
+
'mysql_stat',
|
2266
|
+
'mysql_tablename',
|
2267
|
+
'mysql_thread_id',
|
2268
|
+
'mysql_unbuffered_query'),
|
2269
|
+
'Mysqlnd_memcache': ('mysqlnd_memcache_get_config', 'mysqlnd_memcache_set'),
|
2270
|
+
'Mysqlnd_ms': ('mysqlnd_ms_dump_servers',
|
2271
|
+
'mysqlnd_ms_fabric_select_global',
|
2272
|
+
'mysqlnd_ms_fabric_select_shard',
|
2273
|
+
'mysqlnd_ms_get_last_gtid',
|
2274
|
+
'mysqlnd_ms_get_last_used_connection',
|
2275
|
+
'mysqlnd_ms_get_stats',
|
2276
|
+
'mysqlnd_ms_match_wild',
|
2277
|
+
'mysqlnd_ms_query_is_select',
|
2278
|
+
'mysqlnd_ms_set_qos',
|
2279
|
+
'mysqlnd_ms_set_user_pick_server'),
|
2280
|
+
'Mysqlnd_uh': ('mysqlnd_uh_convert_to_mysqlnd',
|
2281
|
+
'mysqlnd_uh_set_connection_proxy',
|
2282
|
+
'mysqlnd_uh_set_statement_proxy'),
|
2283
|
+
'NSAPI': ('nsapi_request_headers', 'nsapi_response_headers', 'nsapi_virtual'),
|
2284
|
+
'Ncurses': ('ncurses_addch',
|
2285
|
+
'ncurses_addchnstr',
|
2286
|
+
'ncurses_addchstr',
|
2287
|
+
'ncurses_addnstr',
|
2288
|
+
'ncurses_addstr',
|
2289
|
+
'ncurses_assume_default_colors',
|
2290
|
+
'ncurses_attroff',
|
2291
|
+
'ncurses_attron',
|
2292
|
+
'ncurses_attrset',
|
2293
|
+
'ncurses_baudrate',
|
2294
|
+
'ncurses_beep',
|
2295
|
+
'ncurses_bkgd',
|
2296
|
+
'ncurses_bkgdset',
|
2297
|
+
'ncurses_border',
|
2298
|
+
'ncurses_bottom_panel',
|
2299
|
+
'ncurses_can_change_color',
|
2300
|
+
'ncurses_cbreak',
|
2301
|
+
'ncurses_clear',
|
2302
|
+
'ncurses_clrtobot',
|
2303
|
+
'ncurses_clrtoeol',
|
2304
|
+
'ncurses_color_content',
|
2305
|
+
'ncurses_color_set',
|
2306
|
+
'ncurses_curs_set',
|
2307
|
+
'ncurses_def_prog_mode',
|
2308
|
+
'ncurses_def_shell_mode',
|
2309
|
+
'ncurses_define_key',
|
2310
|
+
'ncurses_del_panel',
|
2311
|
+
'ncurses_delay_output',
|
2312
|
+
'ncurses_delch',
|
2313
|
+
'ncurses_deleteln',
|
2314
|
+
'ncurses_delwin',
|
2315
|
+
'ncurses_doupdate',
|
2316
|
+
'ncurses_echo',
|
2317
|
+
'ncurses_echochar',
|
2318
|
+
'ncurses_end',
|
2319
|
+
'ncurses_erase',
|
2320
|
+
'ncurses_erasechar',
|
2321
|
+
'ncurses_filter',
|
2322
|
+
'ncurses_flash',
|
2323
|
+
'ncurses_flushinp',
|
2324
|
+
'ncurses_getch',
|
2325
|
+
'ncurses_getmaxyx',
|
2326
|
+
'ncurses_getmouse',
|
2327
|
+
'ncurses_getyx',
|
2328
|
+
'ncurses_halfdelay',
|
2329
|
+
'ncurses_has_colors',
|
2330
|
+
'ncurses_has_ic',
|
2331
|
+
'ncurses_has_il',
|
2332
|
+
'ncurses_has_key',
|
2333
|
+
'ncurses_hide_panel',
|
2334
|
+
'ncurses_hline',
|
2335
|
+
'ncurses_inch',
|
2336
|
+
'ncurses_init_color',
|
2337
|
+
'ncurses_init_pair',
|
2338
|
+
'ncurses_init',
|
2339
|
+
'ncurses_insch',
|
2340
|
+
'ncurses_insdelln',
|
2341
|
+
'ncurses_insertln',
|
2342
|
+
'ncurses_insstr',
|
2343
|
+
'ncurses_instr',
|
2344
|
+
'ncurses_isendwin',
|
2345
|
+
'ncurses_keyok',
|
2346
|
+
'ncurses_keypad',
|
2347
|
+
'ncurses_killchar',
|
2348
|
+
'ncurses_longname',
|
2349
|
+
'ncurses_meta',
|
2350
|
+
'ncurses_mouse_trafo',
|
2351
|
+
'ncurses_mouseinterval',
|
2352
|
+
'ncurses_mousemask',
|
2353
|
+
'ncurses_move_panel',
|
2354
|
+
'ncurses_move',
|
2355
|
+
'ncurses_mvaddch',
|
2356
|
+
'ncurses_mvaddchnstr',
|
2357
|
+
'ncurses_mvaddchstr',
|
2358
|
+
'ncurses_mvaddnstr',
|
2359
|
+
'ncurses_mvaddstr',
|
2360
|
+
'ncurses_mvcur',
|
2361
|
+
'ncurses_mvdelch',
|
2362
|
+
'ncurses_mvgetch',
|
2363
|
+
'ncurses_mvhline',
|
2364
|
+
'ncurses_mvinch',
|
2365
|
+
'ncurses_mvvline',
|
2366
|
+
'ncurses_mvwaddstr',
|
2367
|
+
'ncurses_napms',
|
2368
|
+
'ncurses_new_panel',
|
2369
|
+
'ncurses_newpad',
|
2370
|
+
'ncurses_newwin',
|
2371
|
+
'ncurses_nl',
|
2372
|
+
'ncurses_nocbreak',
|
2373
|
+
'ncurses_noecho',
|
2374
|
+
'ncurses_nonl',
|
2375
|
+
'ncurses_noqiflush',
|
2376
|
+
'ncurses_noraw',
|
2377
|
+
'ncurses_pair_content',
|
2378
|
+
'ncurses_panel_above',
|
2379
|
+
'ncurses_panel_below',
|
2380
|
+
'ncurses_panel_window',
|
2381
|
+
'ncurses_pnoutrefresh',
|
2382
|
+
'ncurses_prefresh',
|
2383
|
+
'ncurses_putp',
|
2384
|
+
'ncurses_qiflush',
|
2385
|
+
'ncurses_raw',
|
2386
|
+
'ncurses_refresh',
|
2387
|
+
'ncurses_replace_panel',
|
2388
|
+
'ncurses_reset_prog_mode',
|
2389
|
+
'ncurses_reset_shell_mode',
|
2390
|
+
'ncurses_resetty',
|
2391
|
+
'ncurses_savetty',
|
2392
|
+
'ncurses_scr_dump',
|
2393
|
+
'ncurses_scr_init',
|
2394
|
+
'ncurses_scr_restore',
|
2395
|
+
'ncurses_scr_set',
|
2396
|
+
'ncurses_scrl',
|
2397
|
+
'ncurses_show_panel',
|
2398
|
+
'ncurses_slk_attr',
|
2399
|
+
'ncurses_slk_attroff',
|
2400
|
+
'ncurses_slk_attron',
|
2401
|
+
'ncurses_slk_attrset',
|
2402
|
+
'ncurses_slk_clear',
|
2403
|
+
'ncurses_slk_color',
|
2404
|
+
'ncurses_slk_init',
|
2405
|
+
'ncurses_slk_noutrefresh',
|
2406
|
+
'ncurses_slk_refresh',
|
2407
|
+
'ncurses_slk_restore',
|
2408
|
+
'ncurses_slk_set',
|
2409
|
+
'ncurses_slk_touch',
|
2410
|
+
'ncurses_standend',
|
2411
|
+
'ncurses_standout',
|
2412
|
+
'ncurses_start_color',
|
2413
|
+
'ncurses_termattrs',
|
2414
|
+
'ncurses_termname',
|
2415
|
+
'ncurses_timeout',
|
2416
|
+
'ncurses_top_panel',
|
2417
|
+
'ncurses_typeahead',
|
2418
|
+
'ncurses_ungetch',
|
2419
|
+
'ncurses_ungetmouse',
|
2420
|
+
'ncurses_update_panels',
|
2421
|
+
'ncurses_use_default_colors',
|
2422
|
+
'ncurses_use_env',
|
2423
|
+
'ncurses_use_extended_names',
|
2424
|
+
'ncurses_vidattr',
|
2425
|
+
'ncurses_vline',
|
2426
|
+
'ncurses_waddch',
|
2427
|
+
'ncurses_waddstr',
|
2428
|
+
'ncurses_wattroff',
|
2429
|
+
'ncurses_wattron',
|
2430
|
+
'ncurses_wattrset',
|
2431
|
+
'ncurses_wborder',
|
2432
|
+
'ncurses_wclear',
|
2433
|
+
'ncurses_wcolor_set',
|
2434
|
+
'ncurses_werase',
|
2435
|
+
'ncurses_wgetch',
|
2436
|
+
'ncurses_whline',
|
2437
|
+
'ncurses_wmouse_trafo',
|
2438
|
+
'ncurses_wmove',
|
2439
|
+
'ncurses_wnoutrefresh',
|
2440
|
+
'ncurses_wrefresh',
|
2441
|
+
'ncurses_wstandend',
|
2442
|
+
'ncurses_wstandout',
|
2443
|
+
'ncurses_wvline'),
|
2444
|
+
'Network': ('checkdnsrr',
|
2445
|
+
'closelog',
|
2446
|
+
'define_syslog_variables',
|
2447
|
+
'dns_check_record',
|
2448
|
+
'dns_get_mx',
|
2449
|
+
'dns_get_record',
|
2450
|
+
'fsockopen',
|
2451
|
+
'gethostbyaddr',
|
2452
|
+
'gethostbyname',
|
2453
|
+
'gethostbynamel',
|
2454
|
+
'gethostname',
|
2455
|
+
'getmxrr',
|
2456
|
+
'getprotobyname',
|
2457
|
+
'getprotobynumber',
|
2458
|
+
'getservbyname',
|
2459
|
+
'getservbyport',
|
2460
|
+
'header_register_callback',
|
2461
|
+
'header_remove',
|
2462
|
+
'header',
|
2463
|
+
'headers_list',
|
2464
|
+
'headers_sent',
|
2465
|
+
'http_response_code',
|
2466
|
+
'inet_ntop',
|
2467
|
+
'inet_pton',
|
2468
|
+
'ip2long',
|
2469
|
+
'long2ip',
|
2470
|
+
'openlog',
|
2471
|
+
'pfsockopen',
|
2472
|
+
'setcookie',
|
2473
|
+
'setrawcookie',
|
2474
|
+
'socket_get_status',
|
2475
|
+
'socket_set_blocking',
|
2476
|
+
'socket_set_timeout',
|
2477
|
+
'syslog'),
|
2478
|
+
'Newt': ('newt_bell',
|
2479
|
+
'newt_button_bar',
|
2480
|
+
'newt_button',
|
2481
|
+
'newt_centered_window',
|
2482
|
+
'newt_checkbox_get_value',
|
2483
|
+
'newt_checkbox_set_flags',
|
2484
|
+
'newt_checkbox_set_value',
|
2485
|
+
'newt_checkbox_tree_add_item',
|
2486
|
+
'newt_checkbox_tree_find_item',
|
2487
|
+
'newt_checkbox_tree_get_current',
|
2488
|
+
'newt_checkbox_tree_get_entry_value',
|
2489
|
+
'newt_checkbox_tree_get_multi_selection',
|
2490
|
+
'newt_checkbox_tree_get_selection',
|
2491
|
+
'newt_checkbox_tree_multi',
|
2492
|
+
'newt_checkbox_tree_set_current',
|
2493
|
+
'newt_checkbox_tree_set_entry_value',
|
2494
|
+
'newt_checkbox_tree_set_entry',
|
2495
|
+
'newt_checkbox_tree_set_width',
|
2496
|
+
'newt_checkbox_tree',
|
2497
|
+
'newt_checkbox',
|
2498
|
+
'newt_clear_key_buffer',
|
2499
|
+
'newt_cls',
|
2500
|
+
'newt_compact_button',
|
2501
|
+
'newt_component_add_callback',
|
2502
|
+
'newt_component_takes_focus',
|
2503
|
+
'newt_create_grid',
|
2504
|
+
'newt_cursor_off',
|
2505
|
+
'newt_cursor_on',
|
2506
|
+
'newt_delay',
|
2507
|
+
'newt_draw_form',
|
2508
|
+
'newt_draw_root_text',
|
2509
|
+
'newt_entry_get_value',
|
2510
|
+
'newt_entry_set_filter',
|
2511
|
+
'newt_entry_set_flags',
|
2512
|
+
'newt_entry_set',
|
2513
|
+
'newt_entry',
|
2514
|
+
'newt_finished',
|
2515
|
+
'newt_form_add_component',
|
2516
|
+
'newt_form_add_components',
|
2517
|
+
'newt_form_add_hot_key',
|
2518
|
+
'newt_form_destroy',
|
2519
|
+
'newt_form_get_current',
|
2520
|
+
'newt_form_run',
|
2521
|
+
'newt_form_set_background',
|
2522
|
+
'newt_form_set_height',
|
2523
|
+
'newt_form_set_size',
|
2524
|
+
'newt_form_set_timer',
|
2525
|
+
'newt_form_set_width',
|
2526
|
+
'newt_form_watch_fd',
|
2527
|
+
'newt_form',
|
2528
|
+
'newt_get_screen_size',
|
2529
|
+
'newt_grid_add_components_to_form',
|
2530
|
+
'newt_grid_basic_window',
|
2531
|
+
'newt_grid_free',
|
2532
|
+
'newt_grid_get_size',
|
2533
|
+
'newt_grid_h_close_stacked',
|
2534
|
+
'newt_grid_h_stacked',
|
2535
|
+
'newt_grid_place',
|
2536
|
+
'newt_grid_set_field',
|
2537
|
+
'newt_grid_simple_window',
|
2538
|
+
'newt_grid_v_close_stacked',
|
2539
|
+
'newt_grid_v_stacked',
|
2540
|
+
'newt_grid_wrapped_window_at',
|
2541
|
+
'newt_grid_wrapped_window',
|
2542
|
+
'newt_init',
|
2543
|
+
'newt_label_set_text',
|
2544
|
+
'newt_label',
|
2545
|
+
'newt_listbox_append_entry',
|
2546
|
+
'newt_listbox_clear_selection',
|
2547
|
+
'newt_listbox_clear',
|
2548
|
+
'newt_listbox_delete_entry',
|
2549
|
+
'newt_listbox_get_current',
|
2550
|
+
'newt_listbox_get_selection',
|
2551
|
+
'newt_listbox_insert_entry',
|
2552
|
+
'newt_listbox_item_count',
|
2553
|
+
'newt_listbox_select_item',
|
2554
|
+
'newt_listbox_set_current_by_key',
|
2555
|
+
'newt_listbox_set_current',
|
2556
|
+
'newt_listbox_set_data',
|
2557
|
+
'newt_listbox_set_entry',
|
2558
|
+
'newt_listbox_set_width',
|
2559
|
+
'newt_listbox',
|
2560
|
+
'newt_listitem_get_data',
|
2561
|
+
'newt_listitem_set',
|
2562
|
+
'newt_listitem',
|
2563
|
+
'newt_open_window',
|
2564
|
+
'newt_pop_help_line',
|
2565
|
+
'newt_pop_window',
|
2566
|
+
'newt_push_help_line',
|
2567
|
+
'newt_radio_get_current',
|
2568
|
+
'newt_radiobutton',
|
2569
|
+
'newt_redraw_help_line',
|
2570
|
+
'newt_reflow_text',
|
2571
|
+
'newt_refresh',
|
2572
|
+
'newt_resize_screen',
|
2573
|
+
'newt_resume',
|
2574
|
+
'newt_run_form',
|
2575
|
+
'newt_scale_set',
|
2576
|
+
'newt_scale',
|
2577
|
+
'newt_scrollbar_set',
|
2578
|
+
'newt_set_help_callback',
|
2579
|
+
'newt_set_suspend_callback',
|
2580
|
+
'newt_suspend',
|
2581
|
+
'newt_textbox_get_num_lines',
|
2582
|
+
'newt_textbox_reflowed',
|
2583
|
+
'newt_textbox_set_height',
|
2584
|
+
'newt_textbox_set_text',
|
2585
|
+
'newt_textbox',
|
2586
|
+
'newt_vertical_scrollbar',
|
2587
|
+
'newt_wait_for_key',
|
2588
|
+
'newt_win_choice',
|
2589
|
+
'newt_win_entries',
|
2590
|
+
'newt_win_menu',
|
2591
|
+
'newt_win_message',
|
2592
|
+
'newt_win_messagev',
|
2593
|
+
'newt_win_ternary'),
|
2594
|
+
'OAuth': ('oauth_get_sbs', 'oauth_urlencode'),
|
2595
|
+
'OCI8': ('oci_bind_array_by_name',
|
2596
|
+
'oci_bind_by_name',
|
2597
|
+
'oci_cancel',
|
2598
|
+
'oci_client_version',
|
2599
|
+
'oci_close',
|
2600
|
+
'oci_commit',
|
2601
|
+
'oci_connect',
|
2602
|
+
'oci_define_by_name',
|
2603
|
+
'oci_error',
|
2604
|
+
'oci_execute',
|
2605
|
+
'oci_fetch_all',
|
2606
|
+
'oci_fetch_array',
|
2607
|
+
'oci_fetch_assoc',
|
2608
|
+
'oci_fetch_object',
|
2609
|
+
'oci_fetch_row',
|
2610
|
+
'oci_fetch',
|
2611
|
+
'oci_field_is_null',
|
2612
|
+
'oci_field_name',
|
2613
|
+
'oci_field_precision',
|
2614
|
+
'oci_field_scale',
|
2615
|
+
'oci_field_size',
|
2616
|
+
'oci_field_type_raw',
|
2617
|
+
'oci_field_type',
|
2618
|
+
'oci_free_descriptor',
|
2619
|
+
'oci_free_statement',
|
2620
|
+
'oci_get_implicit_resultset',
|
2621
|
+
'oci_internal_debug',
|
2622
|
+
'oci_lob_copy',
|
2623
|
+
'oci_lob_is_equal',
|
2624
|
+
'oci_new_collection',
|
2625
|
+
'oci_new_connect',
|
2626
|
+
'oci_new_cursor',
|
2627
|
+
'oci_new_descriptor',
|
2628
|
+
'oci_num_fields',
|
2629
|
+
'oci_num_rows',
|
2630
|
+
'oci_parse',
|
2631
|
+
'oci_password_change',
|
2632
|
+
'oci_pconnect',
|
2633
|
+
'oci_result',
|
2634
|
+
'oci_rollback',
|
2635
|
+
'oci_server_version',
|
2636
|
+
'oci_set_action',
|
2637
|
+
'oci_set_client_identifier',
|
2638
|
+
'oci_set_client_info',
|
2639
|
+
'oci_set_edition',
|
2640
|
+
'oci_set_module_name',
|
2641
|
+
'oci_set_prefetch',
|
2642
|
+
'oci_statement_type'),
|
2643
|
+
'ODBC': ('odbc_autocommit',
|
2644
|
+
'odbc_binmode',
|
2645
|
+
'odbc_close_all',
|
2646
|
+
'odbc_close',
|
2647
|
+
'odbc_columnprivileges',
|
2648
|
+
'odbc_columns',
|
2649
|
+
'odbc_commit',
|
2650
|
+
'odbc_connect',
|
2651
|
+
'odbc_cursor',
|
2652
|
+
'odbc_data_source',
|
2653
|
+
'odbc_do',
|
2654
|
+
'odbc_error',
|
2655
|
+
'odbc_errormsg',
|
2656
|
+
'odbc_exec',
|
2657
|
+
'odbc_execute',
|
2658
|
+
'odbc_fetch_array',
|
2659
|
+
'odbc_fetch_into',
|
2660
|
+
'odbc_fetch_object',
|
2661
|
+
'odbc_fetch_row',
|
2662
|
+
'odbc_field_len',
|
2663
|
+
'odbc_field_name',
|
2664
|
+
'odbc_field_num',
|
2665
|
+
'odbc_field_precision',
|
2666
|
+
'odbc_field_scale',
|
2667
|
+
'odbc_field_type',
|
2668
|
+
'odbc_foreignkeys',
|
2669
|
+
'odbc_free_result',
|
2670
|
+
'odbc_gettypeinfo',
|
2671
|
+
'odbc_longreadlen',
|
2672
|
+
'odbc_next_result',
|
2673
|
+
'odbc_num_fields',
|
2674
|
+
'odbc_num_rows',
|
2675
|
+
'odbc_pconnect',
|
2676
|
+
'odbc_prepare',
|
2677
|
+
'odbc_primarykeys',
|
2678
|
+
'odbc_procedurecolumns',
|
2679
|
+
'odbc_procedures',
|
2680
|
+
'odbc_result_all',
|
2681
|
+
'odbc_result',
|
2682
|
+
'odbc_rollback',
|
2683
|
+
'odbc_setoption',
|
2684
|
+
'odbc_specialcolumns',
|
2685
|
+
'odbc_statistics',
|
2686
|
+
'odbc_tableprivileges',
|
2687
|
+
'odbc_tables'),
|
2688
|
+
'OPcache': ('opcache_compile_file',
|
2689
|
+
'opcache_get_configuration',
|
2690
|
+
'opcache_get_status',
|
2691
|
+
'opcache_invalidate',
|
2692
|
+
'opcache_reset'),
|
2693
|
+
'Object Aggregation': ('aggregate_info',
|
2694
|
+
'aggregate_methods_by_list',
|
2695
|
+
'aggregate_methods_by_regexp',
|
2696
|
+
'aggregate_methods',
|
2697
|
+
'aggregate_properties_by_list',
|
2698
|
+
'aggregate_properties_by_regexp',
|
2699
|
+
'aggregate_properties',
|
2700
|
+
'aggregate',
|
2701
|
+
'aggregation_info',
|
2702
|
+
'deaggregate'),
|
2703
|
+
'OpenAL': ('openal_buffer_create',
|
2704
|
+
'openal_buffer_data',
|
2705
|
+
'openal_buffer_destroy',
|
2706
|
+
'openal_buffer_get',
|
2707
|
+
'openal_buffer_loadwav',
|
2708
|
+
'openal_context_create',
|
2709
|
+
'openal_context_current',
|
2710
|
+
'openal_context_destroy',
|
2711
|
+
'openal_context_process',
|
2712
|
+
'openal_context_suspend',
|
2713
|
+
'openal_device_close',
|
2714
|
+
'openal_device_open',
|
2715
|
+
'openal_listener_get',
|
2716
|
+
'openal_listener_set',
|
2717
|
+
'openal_source_create',
|
2718
|
+
'openal_source_destroy',
|
2719
|
+
'openal_source_get',
|
2720
|
+
'openal_source_pause',
|
2721
|
+
'openal_source_play',
|
2722
|
+
'openal_source_rewind',
|
2723
|
+
'openal_source_set',
|
2724
|
+
'openal_source_stop',
|
2725
|
+
'openal_stream'),
|
2726
|
+
'OpenSSL': ('openssl_cipher_iv_length',
|
2727
|
+
'openssl_csr_export_to_file',
|
2728
|
+
'openssl_csr_export',
|
2729
|
+
'openssl_csr_get_public_key',
|
2730
|
+
'openssl_csr_get_subject',
|
2731
|
+
'openssl_csr_new',
|
2732
|
+
'openssl_csr_sign',
|
2733
|
+
'openssl_decrypt',
|
2734
|
+
'openssl_dh_compute_key',
|
2735
|
+
'openssl_digest',
|
2736
|
+
'openssl_encrypt',
|
2737
|
+
'openssl_error_string',
|
2738
|
+
'openssl_free_key',
|
2739
|
+
'openssl_get_cipher_methods',
|
2740
|
+
'openssl_get_md_methods',
|
2741
|
+
'openssl_get_privatekey',
|
2742
|
+
'openssl_get_publickey',
|
2743
|
+
'openssl_open',
|
2744
|
+
'openssl_pbkdf2',
|
2745
|
+
'openssl_pkcs12_export_to_file',
|
2746
|
+
'openssl_pkcs12_export',
|
2747
|
+
'openssl_pkcs12_read',
|
2748
|
+
'openssl_pkcs7_decrypt',
|
2749
|
+
'openssl_pkcs7_encrypt',
|
2750
|
+
'openssl_pkcs7_sign',
|
2751
|
+
'openssl_pkcs7_verify',
|
2752
|
+
'openssl_pkey_export_to_file',
|
2753
|
+
'openssl_pkey_export',
|
2754
|
+
'openssl_pkey_free',
|
2755
|
+
'openssl_pkey_get_details',
|
2756
|
+
'openssl_pkey_get_private',
|
2757
|
+
'openssl_pkey_get_public',
|
2758
|
+
'openssl_pkey_new',
|
2759
|
+
'openssl_private_decrypt',
|
2760
|
+
'openssl_private_encrypt',
|
2761
|
+
'openssl_public_decrypt',
|
2762
|
+
'openssl_public_encrypt',
|
2763
|
+
'openssl_random_pseudo_bytes',
|
2764
|
+
'openssl_seal',
|
2765
|
+
'openssl_sign',
|
2766
|
+
'openssl_spki_export_challenge',
|
2767
|
+
'openssl_spki_export',
|
2768
|
+
'openssl_spki_new',
|
2769
|
+
'openssl_spki_verify',
|
2770
|
+
'openssl_verify',
|
2771
|
+
'openssl_x509_check_private_key',
|
2772
|
+
'openssl_x509_checkpurpose',
|
2773
|
+
'openssl_x509_export_to_file',
|
2774
|
+
'openssl_x509_export',
|
2775
|
+
'openssl_x509_free',
|
2776
|
+
'openssl_x509_parse',
|
2777
|
+
'openssl_x509_read'),
|
2778
|
+
'Output Control': ('flush',
|
2779
|
+
'ob_clean',
|
2780
|
+
'ob_end_clean',
|
2781
|
+
'ob_end_flush',
|
2782
|
+
'ob_flush',
|
2783
|
+
'ob_get_clean',
|
2784
|
+
'ob_get_contents',
|
2785
|
+
'ob_get_flush',
|
2786
|
+
'ob_get_length',
|
2787
|
+
'ob_get_level',
|
2788
|
+
'ob_get_status',
|
2789
|
+
'ob_gzhandler',
|
2790
|
+
'ob_implicit_flush',
|
2791
|
+
'ob_list_handlers',
|
2792
|
+
'ob_start',
|
2793
|
+
'output_add_rewrite_var',
|
2794
|
+
'output_reset_rewrite_vars'),
|
2795
|
+
'Ovrimos SQL': ('ovrimos_close',
|
2796
|
+
'ovrimos_commit',
|
2797
|
+
'ovrimos_connect',
|
2798
|
+
'ovrimos_cursor',
|
2799
|
+
'ovrimos_exec',
|
2800
|
+
'ovrimos_execute',
|
2801
|
+
'ovrimos_fetch_into',
|
2802
|
+
'ovrimos_fetch_row',
|
2803
|
+
'ovrimos_field_len',
|
2804
|
+
'ovrimos_field_name',
|
2805
|
+
'ovrimos_field_num',
|
2806
|
+
'ovrimos_field_type',
|
2807
|
+
'ovrimos_free_result',
|
2808
|
+
'ovrimos_longreadlen',
|
2809
|
+
'ovrimos_num_fields',
|
2810
|
+
'ovrimos_num_rows',
|
2811
|
+
'ovrimos_prepare',
|
2812
|
+
'ovrimos_result_all',
|
2813
|
+
'ovrimos_result',
|
2814
|
+
'ovrimos_rollback'),
|
2815
|
+
'PCNTL': ('pcntl_alarm',
|
2816
|
+
'pcntl_errno',
|
2817
|
+
'pcntl_exec',
|
2818
|
+
'pcntl_fork',
|
2819
|
+
'pcntl_get_last_error',
|
2820
|
+
'pcntl_getpriority',
|
2821
|
+
'pcntl_setpriority',
|
2822
|
+
'pcntl_signal_dispatch',
|
2823
|
+
'pcntl_signal',
|
2824
|
+
'pcntl_sigprocmask',
|
2825
|
+
'pcntl_sigtimedwait',
|
2826
|
+
'pcntl_sigwaitinfo',
|
2827
|
+
'pcntl_strerror',
|
2828
|
+
'pcntl_wait',
|
2829
|
+
'pcntl_waitpid',
|
2830
|
+
'pcntl_wexitstatus',
|
2831
|
+
'pcntl_wifexited',
|
2832
|
+
'pcntl_wifsignaled',
|
2833
|
+
'pcntl_wifstopped',
|
2834
|
+
'pcntl_wstopsig',
|
2835
|
+
'pcntl_wtermsig'),
|
2836
|
+
'PCRE': ('preg_filter',
|
2837
|
+
'preg_grep',
|
2838
|
+
'preg_last_error',
|
2839
|
+
'preg_match_all',
|
2840
|
+
'preg_match',
|
2841
|
+
'preg_quote',
|
2842
|
+
'preg_replace_callback',
|
2843
|
+
'preg_replace',
|
2844
|
+
'preg_split'),
|
2845
|
+
'PDF': ('PDF_activate_item',
|
2846
|
+
'PDF_add_annotation',
|
2847
|
+
'PDF_add_bookmark',
|
2848
|
+
'PDF_add_launchlink',
|
2849
|
+
'PDF_add_locallink',
|
2850
|
+
'PDF_add_nameddest',
|
2851
|
+
'PDF_add_note',
|
2852
|
+
'PDF_add_outline',
|
2853
|
+
'PDF_add_pdflink',
|
2854
|
+
'PDF_add_table_cell',
|
2855
|
+
'PDF_add_textflow',
|
2856
|
+
'PDF_add_thumbnail',
|
2857
|
+
'PDF_add_weblink',
|
2858
|
+
'PDF_arc',
|
2859
|
+
'PDF_arcn',
|
2860
|
+
'PDF_attach_file',
|
2861
|
+
'PDF_begin_document',
|
2862
|
+
'PDF_begin_font',
|
2863
|
+
'PDF_begin_glyph',
|
2864
|
+
'PDF_begin_item',
|
2865
|
+
'PDF_begin_layer',
|
2866
|
+
'PDF_begin_page_ext',
|
2867
|
+
'PDF_begin_page',
|
2868
|
+
'PDF_begin_pattern',
|
2869
|
+
'PDF_begin_template_ext',
|
2870
|
+
'PDF_begin_template',
|
2871
|
+
'PDF_circle',
|
2872
|
+
'PDF_clip',
|
2873
|
+
'PDF_close_image',
|
2874
|
+
'PDF_close_pdi_page',
|
2875
|
+
'PDF_close_pdi',
|
2876
|
+
'PDF_close',
|
2877
|
+
'PDF_closepath_fill_stroke',
|
2878
|
+
'PDF_closepath_stroke',
|
2879
|
+
'PDF_closepath',
|
2880
|
+
'PDF_concat',
|
2881
|
+
'PDF_continue_text',
|
2882
|
+
'PDF_create_3dview',
|
2883
|
+
'PDF_create_action',
|
2884
|
+
'PDF_create_annotation',
|
2885
|
+
'PDF_create_bookmark',
|
2886
|
+
'PDF_create_field',
|
2887
|
+
'PDF_create_fieldgroup',
|
2888
|
+
'PDF_create_gstate',
|
2889
|
+
'PDF_create_pvf',
|
2890
|
+
'PDF_create_textflow',
|
2891
|
+
'PDF_curveto',
|
2892
|
+
'PDF_define_layer',
|
2893
|
+
'PDF_delete_pvf',
|
2894
|
+
'PDF_delete_table',
|
2895
|
+
'PDF_delete_textflow',
|
2896
|
+
'PDF_delete',
|
2897
|
+
'PDF_encoding_set_char',
|
2898
|
+
'PDF_end_document',
|
2899
|
+
'PDF_end_font',
|
2900
|
+
'PDF_end_glyph',
|
2901
|
+
'PDF_end_item',
|
2902
|
+
'PDF_end_layer',
|
2903
|
+
'PDF_end_page_ext',
|
2904
|
+
'PDF_end_page',
|
2905
|
+
'PDF_end_pattern',
|
2906
|
+
'PDF_end_template',
|
2907
|
+
'PDF_endpath',
|
2908
|
+
'PDF_fill_imageblock',
|
2909
|
+
'PDF_fill_pdfblock',
|
2910
|
+
'PDF_fill_stroke',
|
2911
|
+
'PDF_fill_textblock',
|
2912
|
+
'PDF_fill',
|
2913
|
+
'PDF_findfont',
|
2914
|
+
'PDF_fit_image',
|
2915
|
+
'PDF_fit_pdi_page',
|
2916
|
+
'PDF_fit_table',
|
2917
|
+
'PDF_fit_textflow',
|
2918
|
+
'PDF_fit_textline',
|
2919
|
+
'PDF_get_apiname',
|
2920
|
+
'PDF_get_buffer',
|
2921
|
+
'PDF_get_errmsg',
|
2922
|
+
'PDF_get_errnum',
|
2923
|
+
'PDF_get_font',
|
2924
|
+
'PDF_get_fontname',
|
2925
|
+
'PDF_get_fontsize',
|
2926
|
+
'PDF_get_image_height',
|
2927
|
+
'PDF_get_image_width',
|
2928
|
+
'PDF_get_majorversion',
|
2929
|
+
'PDF_get_minorversion',
|
2930
|
+
'PDF_get_parameter',
|
2931
|
+
'PDF_get_pdi_parameter',
|
2932
|
+
'PDF_get_pdi_value',
|
2933
|
+
'PDF_get_value',
|
2934
|
+
'PDF_info_font',
|
2935
|
+
'PDF_info_matchbox',
|
2936
|
+
'PDF_info_table',
|
2937
|
+
'PDF_info_textflow',
|
2938
|
+
'PDF_info_textline',
|
2939
|
+
'PDF_initgraphics',
|
2940
|
+
'PDF_lineto',
|
2941
|
+
'PDF_load_3ddata',
|
2942
|
+
'PDF_load_font',
|
2943
|
+
'PDF_load_iccprofile',
|
2944
|
+
'PDF_load_image',
|
2945
|
+
'PDF_makespotcolor',
|
2946
|
+
'PDF_moveto',
|
2947
|
+
'PDF_new',
|
2948
|
+
'PDF_open_ccitt',
|
2949
|
+
'PDF_open_file',
|
2950
|
+
'PDF_open_gif',
|
2951
|
+
'PDF_open_image_file',
|
2952
|
+
'PDF_open_image',
|
2953
|
+
'PDF_open_jpeg',
|
2954
|
+
'PDF_open_memory_image',
|
2955
|
+
'PDF_open_pdi_document',
|
2956
|
+
'PDF_open_pdi_page',
|
2957
|
+
'PDF_open_pdi',
|
2958
|
+
'PDF_open_tiff',
|
2959
|
+
'PDF_pcos_get_number',
|
2960
|
+
'PDF_pcos_get_stream',
|
2961
|
+
'PDF_pcos_get_string',
|
2962
|
+
'PDF_place_image',
|
2963
|
+
'PDF_place_pdi_page',
|
2964
|
+
'PDF_process_pdi',
|
2965
|
+
'PDF_rect',
|
2966
|
+
'PDF_restore',
|
2967
|
+
'PDF_resume_page',
|
2968
|
+
'PDF_rotate',
|
2969
|
+
'PDF_save',
|
2970
|
+
'PDF_scale',
|
2971
|
+
'PDF_set_border_color',
|
2972
|
+
'PDF_set_border_dash',
|
2973
|
+
'PDF_set_border_style',
|
2974
|
+
'PDF_set_char_spacing',
|
2975
|
+
'PDF_set_duration',
|
2976
|
+
'PDF_set_gstate',
|
2977
|
+
'PDF_set_horiz_scaling',
|
2978
|
+
'PDF_set_info_author',
|
2979
|
+
'PDF_set_info_creator',
|
2980
|
+
'PDF_set_info_keywords',
|
2981
|
+
'PDF_set_info_subject',
|
2982
|
+
'PDF_set_info_title',
|
2983
|
+
'PDF_set_info',
|
2984
|
+
'PDF_set_layer_dependency',
|
2985
|
+
'PDF_set_leading',
|
2986
|
+
'PDF_set_parameter',
|
2987
|
+
'PDF_set_text_matrix',
|
2988
|
+
'PDF_set_text_pos',
|
2989
|
+
'PDF_set_text_rendering',
|
2990
|
+
'PDF_set_text_rise',
|
2991
|
+
'PDF_set_value',
|
2992
|
+
'PDF_set_word_spacing',
|
2993
|
+
'PDF_setcolor',
|
2994
|
+
'PDF_setdash',
|
2995
|
+
'PDF_setdashpattern',
|
2996
|
+
'PDF_setflat',
|
2997
|
+
'PDF_setfont',
|
2998
|
+
'PDF_setgray_fill',
|
2999
|
+
'PDF_setgray_stroke',
|
3000
|
+
'PDF_setgray',
|
3001
|
+
'PDF_setlinecap',
|
3002
|
+
'PDF_setlinejoin',
|
3003
|
+
'PDF_setlinewidth',
|
3004
|
+
'PDF_setmatrix',
|
3005
|
+
'PDF_setmiterlimit',
|
3006
|
+
'PDF_setpolydash',
|
3007
|
+
'PDF_setrgbcolor_fill',
|
3008
|
+
'PDF_setrgbcolor_stroke',
|
3009
|
+
'PDF_setrgbcolor',
|
3010
|
+
'PDF_shading_pattern',
|
3011
|
+
'PDF_shading',
|
3012
|
+
'PDF_shfill',
|
3013
|
+
'PDF_show_boxed',
|
3014
|
+
'PDF_show_xy',
|
3015
|
+
'PDF_show',
|
3016
|
+
'PDF_skew',
|
3017
|
+
'PDF_stringwidth',
|
3018
|
+
'PDF_stroke',
|
3019
|
+
'PDF_suspend_page',
|
3020
|
+
'PDF_translate',
|
3021
|
+
'PDF_utf16_to_utf8',
|
3022
|
+
'PDF_utf32_to_utf16',
|
3023
|
+
'PDF_utf8_to_utf16'),
|
3024
|
+
'PHP Options/Info': ('assert_options',
|
3025
|
+
'assert',
|
3026
|
+
'cli_get_process_title',
|
3027
|
+
'cli_set_process_title',
|
3028
|
+
'dl',
|
3029
|
+
'extension_loaded',
|
3030
|
+
'gc_collect_cycles',
|
3031
|
+
'gc_disable',
|
3032
|
+
'gc_enable',
|
3033
|
+
'gc_enabled',
|
3034
|
+
'get_cfg_var',
|
3035
|
+
'get_current_user',
|
3036
|
+
'get_defined_constants',
|
3037
|
+
'get_extension_funcs',
|
3038
|
+
'get_include_path',
|
3039
|
+
'get_included_files',
|
3040
|
+
'get_loaded_extensions',
|
3041
|
+
'get_magic_quotes_gpc',
|
3042
|
+
'get_magic_quotes_runtime',
|
3043
|
+
'get_required_files',
|
3044
|
+
'getenv',
|
3045
|
+
'getlastmod',
|
3046
|
+
'getmygid',
|
3047
|
+
'getmyinode',
|
3048
|
+
'getmypid',
|
3049
|
+
'getmyuid',
|
3050
|
+
'getopt',
|
3051
|
+
'getrusage',
|
3052
|
+
'ini_alter',
|
3053
|
+
'ini_get_all',
|
3054
|
+
'ini_get',
|
3055
|
+
'ini_restore',
|
3056
|
+
'ini_set',
|
3057
|
+
'magic_quotes_runtime',
|
3058
|
+
'memory_get_peak_usage',
|
3059
|
+
'memory_get_usage',
|
3060
|
+
'php_ini_loaded_file',
|
3061
|
+
'php_ini_scanned_files',
|
3062
|
+
'php_logo_guid',
|
3063
|
+
'php_sapi_name',
|
3064
|
+
'php_uname',
|
3065
|
+
'phpcredits',
|
3066
|
+
'phpinfo',
|
3067
|
+
'phpversion',
|
3068
|
+
'putenv',
|
3069
|
+
'restore_include_path',
|
3070
|
+
'set_include_path',
|
3071
|
+
'set_magic_quotes_runtime',
|
3072
|
+
'set_time_limit',
|
3073
|
+
'sys_get_temp_dir',
|
3074
|
+
'version_compare',
|
3075
|
+
'zend_logo_guid',
|
3076
|
+
'zend_thread_id',
|
3077
|
+
'zend_version'),
|
3078
|
+
'POSIX': ('posix_access',
|
3079
|
+
'posix_ctermid',
|
3080
|
+
'posix_errno',
|
3081
|
+
'posix_get_last_error',
|
3082
|
+
'posix_getcwd',
|
3083
|
+
'posix_getegid',
|
3084
|
+
'posix_geteuid',
|
3085
|
+
'posix_getgid',
|
3086
|
+
'posix_getgrgid',
|
3087
|
+
'posix_getgrnam',
|
3088
|
+
'posix_getgroups',
|
3089
|
+
'posix_getlogin',
|
3090
|
+
'posix_getpgid',
|
3091
|
+
'posix_getpgrp',
|
3092
|
+
'posix_getpid',
|
3093
|
+
'posix_getppid',
|
3094
|
+
'posix_getpwnam',
|
3095
|
+
'posix_getpwuid',
|
3096
|
+
'posix_getrlimit',
|
3097
|
+
'posix_getsid',
|
3098
|
+
'posix_getuid',
|
3099
|
+
'posix_initgroups',
|
3100
|
+
'posix_isatty',
|
3101
|
+
'posix_kill',
|
3102
|
+
'posix_mkfifo',
|
3103
|
+
'posix_mknod',
|
3104
|
+
'posix_setegid',
|
3105
|
+
'posix_seteuid',
|
3106
|
+
'posix_setgid',
|
3107
|
+
'posix_setpgid',
|
3108
|
+
'posix_setsid',
|
3109
|
+
'posix_setuid',
|
3110
|
+
'posix_strerror',
|
3111
|
+
'posix_times',
|
3112
|
+
'posix_ttyname',
|
3113
|
+
'posix_uname'),
|
3114
|
+
'POSIX Regex': ('ereg_replace',
|
3115
|
+
'ereg',
|
3116
|
+
'eregi_replace',
|
3117
|
+
'eregi',
|
3118
|
+
'split',
|
3119
|
+
'spliti',
|
3120
|
+
'sql_regcase'),
|
3121
|
+
'PS': ('ps_add_bookmark',
|
3122
|
+
'ps_add_launchlink',
|
3123
|
+
'ps_add_locallink',
|
3124
|
+
'ps_add_note',
|
3125
|
+
'ps_add_pdflink',
|
3126
|
+
'ps_add_weblink',
|
3127
|
+
'ps_arc',
|
3128
|
+
'ps_arcn',
|
3129
|
+
'ps_begin_page',
|
3130
|
+
'ps_begin_pattern',
|
3131
|
+
'ps_begin_template',
|
3132
|
+
'ps_circle',
|
3133
|
+
'ps_clip',
|
3134
|
+
'ps_close_image',
|
3135
|
+
'ps_close',
|
3136
|
+
'ps_closepath_stroke',
|
3137
|
+
'ps_closepath',
|
3138
|
+
'ps_continue_text',
|
3139
|
+
'ps_curveto',
|
3140
|
+
'ps_delete',
|
3141
|
+
'ps_end_page',
|
3142
|
+
'ps_end_pattern',
|
3143
|
+
'ps_end_template',
|
3144
|
+
'ps_fill_stroke',
|
3145
|
+
'ps_fill',
|
3146
|
+
'ps_findfont',
|
3147
|
+
'ps_get_buffer',
|
3148
|
+
'ps_get_parameter',
|
3149
|
+
'ps_get_value',
|
3150
|
+
'ps_hyphenate',
|
3151
|
+
'ps_include_file',
|
3152
|
+
'ps_lineto',
|
3153
|
+
'ps_makespotcolor',
|
3154
|
+
'ps_moveto',
|
3155
|
+
'ps_new',
|
3156
|
+
'ps_open_file',
|
3157
|
+
'ps_open_image_file',
|
3158
|
+
'ps_open_image',
|
3159
|
+
'ps_open_memory_image',
|
3160
|
+
'ps_place_image',
|
3161
|
+
'ps_rect',
|
3162
|
+
'ps_restore',
|
3163
|
+
'ps_rotate',
|
3164
|
+
'ps_save',
|
3165
|
+
'ps_scale',
|
3166
|
+
'ps_set_border_color',
|
3167
|
+
'ps_set_border_dash',
|
3168
|
+
'ps_set_border_style',
|
3169
|
+
'ps_set_info',
|
3170
|
+
'ps_set_parameter',
|
3171
|
+
'ps_set_text_pos',
|
3172
|
+
'ps_set_value',
|
3173
|
+
'ps_setcolor',
|
3174
|
+
'ps_setdash',
|
3175
|
+
'ps_setflat',
|
3176
|
+
'ps_setfont',
|
3177
|
+
'ps_setgray',
|
3178
|
+
'ps_setlinecap',
|
3179
|
+
'ps_setlinejoin',
|
3180
|
+
'ps_setlinewidth',
|
3181
|
+
'ps_setmiterlimit',
|
3182
|
+
'ps_setoverprintmode',
|
3183
|
+
'ps_setpolydash',
|
3184
|
+
'ps_shading_pattern',
|
3185
|
+
'ps_shading',
|
3186
|
+
'ps_shfill',
|
3187
|
+
'ps_show_boxed',
|
3188
|
+
'ps_show_xy2',
|
3189
|
+
'ps_show_xy',
|
3190
|
+
'ps_show2',
|
3191
|
+
'ps_show',
|
3192
|
+
'ps_string_geometry',
|
3193
|
+
'ps_stringwidth',
|
3194
|
+
'ps_stroke',
|
3195
|
+
'ps_symbol_name',
|
3196
|
+
'ps_symbol_width',
|
3197
|
+
'ps_symbol',
|
3198
|
+
'ps_translate'),
|
3199
|
+
'Paradox': ('px_close',
|
3200
|
+
'px_create_fp',
|
3201
|
+
'px_date2string',
|
3202
|
+
'px_delete_record',
|
3203
|
+
'px_delete',
|
3204
|
+
'px_get_field',
|
3205
|
+
'px_get_info',
|
3206
|
+
'px_get_parameter',
|
3207
|
+
'px_get_record',
|
3208
|
+
'px_get_schema',
|
3209
|
+
'px_get_value',
|
3210
|
+
'px_insert_record',
|
3211
|
+
'px_new',
|
3212
|
+
'px_numfields',
|
3213
|
+
'px_numrecords',
|
3214
|
+
'px_open_fp',
|
3215
|
+
'px_put_record',
|
3216
|
+
'px_retrieve_record',
|
3217
|
+
'px_set_blob_file',
|
3218
|
+
'px_set_parameter',
|
3219
|
+
'px_set_tablename',
|
3220
|
+
'px_set_targetencoding',
|
3221
|
+
'px_set_value',
|
3222
|
+
'px_timestamp2string',
|
3223
|
+
'px_update_record'),
|
3224
|
+
'Parsekit': ('parsekit_compile_file',
|
3225
|
+
'parsekit_compile_string',
|
3226
|
+
'parsekit_func_arginfo'),
|
3227
|
+
'Password Hashing': ('password_get_info',
|
3228
|
+
'password_hash',
|
3229
|
+
'password_needs_rehash',
|
3230
|
+
'password_verify'),
|
3231
|
+
'PostgreSQL': ('pg_affected_rows',
|
3232
|
+
'pg_cancel_query',
|
3233
|
+
'pg_client_encoding',
|
3234
|
+
'pg_close',
|
3235
|
+
'pg_connect',
|
3236
|
+
'pg_connection_busy',
|
3237
|
+
'pg_connection_reset',
|
3238
|
+
'pg_connection_status',
|
3239
|
+
'pg_convert',
|
3240
|
+
'pg_copy_from',
|
3241
|
+
'pg_copy_to',
|
3242
|
+
'pg_dbname',
|
3243
|
+
'pg_delete',
|
3244
|
+
'pg_end_copy',
|
3245
|
+
'pg_escape_bytea',
|
3246
|
+
'pg_escape_identifier',
|
3247
|
+
'pg_escape_literal',
|
3248
|
+
'pg_escape_string',
|
3249
|
+
'pg_execute',
|
3250
|
+
'pg_fetch_all_columns',
|
3251
|
+
'pg_fetch_all',
|
3252
|
+
'pg_fetch_array',
|
3253
|
+
'pg_fetch_assoc',
|
3254
|
+
'pg_fetch_object',
|
3255
|
+
'pg_fetch_result',
|
3256
|
+
'pg_fetch_row',
|
3257
|
+
'pg_field_is_null',
|
3258
|
+
'pg_field_name',
|
3259
|
+
'pg_field_num',
|
3260
|
+
'pg_field_prtlen',
|
3261
|
+
'pg_field_size',
|
3262
|
+
'pg_field_table',
|
3263
|
+
'pg_field_type_oid',
|
3264
|
+
'pg_field_type',
|
3265
|
+
'pg_free_result',
|
3266
|
+
'pg_get_notify',
|
3267
|
+
'pg_get_pid',
|
3268
|
+
'pg_get_result',
|
3269
|
+
'pg_host',
|
3270
|
+
'pg_insert',
|
3271
|
+
'pg_last_error',
|
3272
|
+
'pg_last_notice',
|
3273
|
+
'pg_last_oid',
|
3274
|
+
'pg_lo_close',
|
3275
|
+
'pg_lo_create',
|
3276
|
+
'pg_lo_export',
|
3277
|
+
'pg_lo_import',
|
3278
|
+
'pg_lo_open',
|
3279
|
+
'pg_lo_read_all',
|
3280
|
+
'pg_lo_read',
|
3281
|
+
'pg_lo_seek',
|
3282
|
+
'pg_lo_tell',
|
3283
|
+
'pg_lo_truncate',
|
3284
|
+
'pg_lo_unlink',
|
3285
|
+
'pg_lo_write',
|
3286
|
+
'pg_meta_data',
|
3287
|
+
'pg_num_fields',
|
3288
|
+
'pg_num_rows',
|
3289
|
+
'pg_options',
|
3290
|
+
'pg_parameter_status',
|
3291
|
+
'pg_pconnect',
|
3292
|
+
'pg_ping',
|
3293
|
+
'pg_port',
|
3294
|
+
'pg_prepare',
|
3295
|
+
'pg_put_line',
|
3296
|
+
'pg_query_params',
|
3297
|
+
'pg_query',
|
3298
|
+
'pg_result_error_field',
|
3299
|
+
'pg_result_error',
|
3300
|
+
'pg_result_seek',
|
3301
|
+
'pg_result_status',
|
3302
|
+
'pg_select',
|
3303
|
+
'pg_send_execute',
|
3304
|
+
'pg_send_prepare',
|
3305
|
+
'pg_send_query_params',
|
3306
|
+
'pg_send_query',
|
3307
|
+
'pg_set_client_encoding',
|
3308
|
+
'pg_set_error_verbosity',
|
3309
|
+
'pg_trace',
|
3310
|
+
'pg_transaction_status',
|
3311
|
+
'pg_tty',
|
3312
|
+
'pg_unescape_bytea',
|
3313
|
+
'pg_untrace',
|
3314
|
+
'pg_update',
|
3315
|
+
'pg_version'),
|
3316
|
+
'Printer': ('printer_abort',
|
3317
|
+
'printer_close',
|
3318
|
+
'printer_create_brush',
|
3319
|
+
'printer_create_dc',
|
3320
|
+
'printer_create_font',
|
3321
|
+
'printer_create_pen',
|
3322
|
+
'printer_delete_brush',
|
3323
|
+
'printer_delete_dc',
|
3324
|
+
'printer_delete_font',
|
3325
|
+
'printer_delete_pen',
|
3326
|
+
'printer_draw_bmp',
|
3327
|
+
'printer_draw_chord',
|
3328
|
+
'printer_draw_elipse',
|
3329
|
+
'printer_draw_line',
|
3330
|
+
'printer_draw_pie',
|
3331
|
+
'printer_draw_rectangle',
|
3332
|
+
'printer_draw_roundrect',
|
3333
|
+
'printer_draw_text',
|
3334
|
+
'printer_end_doc',
|
3335
|
+
'printer_end_page',
|
3336
|
+
'printer_get_option',
|
3337
|
+
'printer_list',
|
3338
|
+
'printer_logical_fontheight',
|
3339
|
+
'printer_open',
|
3340
|
+
'printer_select_brush',
|
3341
|
+
'printer_select_font',
|
3342
|
+
'printer_select_pen',
|
3343
|
+
'printer_set_option',
|
3344
|
+
'printer_start_doc',
|
3345
|
+
'printer_start_page',
|
3346
|
+
'printer_write'),
|
3347
|
+
'Proctitle': ('setproctitle', 'setthreadtitle'),
|
3348
|
+
'Program execution': ('escapeshellarg',
|
3349
|
+
'escapeshellcmd',
|
3350
|
+
'exec',
|
3351
|
+
'passthru',
|
3352
|
+
'proc_close',
|
3353
|
+
'proc_get_status',
|
3354
|
+
'proc_nice',
|
3355
|
+
'proc_open',
|
3356
|
+
'proc_terminate',
|
3357
|
+
'shell_exec',
|
3358
|
+
'system'),
|
3359
|
+
'Pspell': ('pspell_add_to_personal',
|
3360
|
+
'pspell_add_to_session',
|
3361
|
+
'pspell_check',
|
3362
|
+
'pspell_clear_session',
|
3363
|
+
'pspell_config_create',
|
3364
|
+
'pspell_config_data_dir',
|
3365
|
+
'pspell_config_dict_dir',
|
3366
|
+
'pspell_config_ignore',
|
3367
|
+
'pspell_config_mode',
|
3368
|
+
'pspell_config_personal',
|
3369
|
+
'pspell_config_repl',
|
3370
|
+
'pspell_config_runtogether',
|
3371
|
+
'pspell_config_save_repl',
|
3372
|
+
'pspell_new_config',
|
3373
|
+
'pspell_new_personal',
|
3374
|
+
'pspell_new',
|
3375
|
+
'pspell_save_wordlist',
|
3376
|
+
'pspell_store_replacement',
|
3377
|
+
'pspell_suggest'),
|
3378
|
+
'RPM Reader': ('rpm_close',
|
3379
|
+
'rpm_get_tag',
|
3380
|
+
'rpm_is_valid',
|
3381
|
+
'rpm_open',
|
3382
|
+
'rpm_version'),
|
3383
|
+
'RRD': ('rrd_create',
|
3384
|
+
'rrd_error',
|
3385
|
+
'rrd_fetch',
|
3386
|
+
'rrd_first',
|
3387
|
+
'rrd_graph',
|
3388
|
+
'rrd_info',
|
3389
|
+
'rrd_last',
|
3390
|
+
'rrd_lastupdate',
|
3391
|
+
'rrd_restore',
|
3392
|
+
'rrd_tune',
|
3393
|
+
'rrd_update',
|
3394
|
+
'rrd_version',
|
3395
|
+
'rrd_xport',
|
3396
|
+
'rrdc_disconnect'),
|
3397
|
+
'Radius': ('radius_acct_open',
|
3398
|
+
'radius_add_server',
|
3399
|
+
'radius_auth_open',
|
3400
|
+
'radius_close',
|
3401
|
+
'radius_config',
|
3402
|
+
'radius_create_request',
|
3403
|
+
'radius_cvt_addr',
|
3404
|
+
'radius_cvt_int',
|
3405
|
+
'radius_cvt_string',
|
3406
|
+
'radius_demangle_mppe_key',
|
3407
|
+
'radius_demangle',
|
3408
|
+
'radius_get_attr',
|
3409
|
+
'radius_get_tagged_attr_data',
|
3410
|
+
'radius_get_tagged_attr_tag',
|
3411
|
+
'radius_get_vendor_attr',
|
3412
|
+
'radius_put_addr',
|
3413
|
+
'radius_put_attr',
|
3414
|
+
'radius_put_int',
|
3415
|
+
'radius_put_string',
|
3416
|
+
'radius_put_vendor_addr',
|
3417
|
+
'radius_put_vendor_attr',
|
3418
|
+
'radius_put_vendor_int',
|
3419
|
+
'radius_put_vendor_string',
|
3420
|
+
'radius_request_authenticator',
|
3421
|
+
'radius_salt_encrypt_attr',
|
3422
|
+
'radius_send_request',
|
3423
|
+
'radius_server_secret',
|
3424
|
+
'radius_strerror'),
|
3425
|
+
'Rar': ('rar_wrapper_cache_stats',),
|
3426
|
+
'Readline': ('readline_add_history',
|
3427
|
+
'readline_callback_handler_install',
|
3428
|
+
'readline_callback_handler_remove',
|
3429
|
+
'readline_callback_read_char',
|
3430
|
+
'readline_clear_history',
|
3431
|
+
'readline_completion_function',
|
3432
|
+
'readline_info',
|
3433
|
+
'readline_list_history',
|
3434
|
+
'readline_on_new_line',
|
3435
|
+
'readline_read_history',
|
3436
|
+
'readline_redisplay',
|
3437
|
+
'readline_write_history',
|
3438
|
+
'readline'),
|
3439
|
+
'Recode': ('recode_file', 'recode_string', 'recode'),
|
3440
|
+
'SNMP': ('snmp_get_quick_print',
|
3441
|
+
'snmp_get_valueretrieval',
|
3442
|
+
'snmp_read_mib',
|
3443
|
+
'snmp_set_enum_print',
|
3444
|
+
'snmp_set_oid_numeric_print',
|
3445
|
+
'snmp_set_oid_output_format',
|
3446
|
+
'snmp_set_quick_print',
|
3447
|
+
'snmp_set_valueretrieval',
|
3448
|
+
'snmp2_get',
|
3449
|
+
'snmp2_getnext',
|
3450
|
+
'snmp2_real_walk',
|
3451
|
+
'snmp2_set',
|
3452
|
+
'snmp2_walk',
|
3453
|
+
'snmp3_get',
|
3454
|
+
'snmp3_getnext',
|
3455
|
+
'snmp3_real_walk',
|
3456
|
+
'snmp3_set',
|
3457
|
+
'snmp3_walk',
|
3458
|
+
'snmpget',
|
3459
|
+
'snmpgetnext',
|
3460
|
+
'snmprealwalk',
|
3461
|
+
'snmpset',
|
3462
|
+
'snmpwalk',
|
3463
|
+
'snmpwalkoid'),
|
3464
|
+
'SOAP': ('is_soap_fault', 'use_soap_error_handler'),
|
3465
|
+
'SPL': ('class_implements',
|
3466
|
+
'class_parents',
|
3467
|
+
'class_uses',
|
3468
|
+
'iterator_apply',
|
3469
|
+
'iterator_count',
|
3470
|
+
'iterator_to_array',
|
3471
|
+
'spl_autoload_call',
|
3472
|
+
'spl_autoload_extensions',
|
3473
|
+
'spl_autoload_functions',
|
3474
|
+
'spl_autoload_register',
|
3475
|
+
'spl_autoload_unregister',
|
3476
|
+
'spl_autoload',
|
3477
|
+
'spl_classes',
|
3478
|
+
'spl_object_hash'),
|
3479
|
+
'SPPLUS': ('calcul_hmac', 'calculhmac', 'nthmac', 'signeurlpaiement'),
|
3480
|
+
'SQLSRV': ('sqlsrv_begin_transaction',
|
3481
|
+
'sqlsrv_cancel',
|
3482
|
+
'sqlsrv_client_info',
|
3483
|
+
'sqlsrv_close',
|
3484
|
+
'sqlsrv_commit',
|
3485
|
+
'sqlsrv_configure',
|
3486
|
+
'sqlsrv_connect',
|
3487
|
+
'sqlsrv_errors',
|
3488
|
+
'sqlsrv_execute',
|
3489
|
+
'sqlsrv_fetch_array',
|
3490
|
+
'sqlsrv_fetch_object',
|
3491
|
+
'sqlsrv_fetch',
|
3492
|
+
'sqlsrv_field_metadata',
|
3493
|
+
'sqlsrv_free_stmt',
|
3494
|
+
'sqlsrv_get_config',
|
3495
|
+
'sqlsrv_get_field',
|
3496
|
+
'sqlsrv_has_rows',
|
3497
|
+
'sqlsrv_next_result',
|
3498
|
+
'sqlsrv_num_fields',
|
3499
|
+
'sqlsrv_num_rows',
|
3500
|
+
'sqlsrv_prepare',
|
3501
|
+
'sqlsrv_query',
|
3502
|
+
'sqlsrv_rollback',
|
3503
|
+
'sqlsrv_rows_affected',
|
3504
|
+
'sqlsrv_send_stream_data',
|
3505
|
+
'sqlsrv_server_info'),
|
3506
|
+
'SQLite': ('sqlite_array_query',
|
3507
|
+
'sqlite_busy_timeout',
|
3508
|
+
'sqlite_changes',
|
3509
|
+
'sqlite_close',
|
3510
|
+
'sqlite_column',
|
3511
|
+
'sqlite_create_aggregate',
|
3512
|
+
'sqlite_create_function',
|
3513
|
+
'sqlite_current',
|
3514
|
+
'sqlite_error_string',
|
3515
|
+
'sqlite_escape_string',
|
3516
|
+
'sqlite_exec',
|
3517
|
+
'sqlite_factory',
|
3518
|
+
'sqlite_fetch_all',
|
3519
|
+
'sqlite_fetch_array',
|
3520
|
+
'sqlite_fetch_column_types',
|
3521
|
+
'sqlite_fetch_object',
|
3522
|
+
'sqlite_fetch_single',
|
3523
|
+
'sqlite_fetch_string',
|
3524
|
+
'sqlite_field_name',
|
3525
|
+
'sqlite_has_more',
|
3526
|
+
'sqlite_has_prev',
|
3527
|
+
'sqlite_key',
|
3528
|
+
'sqlite_last_error',
|
3529
|
+
'sqlite_last_insert_rowid',
|
3530
|
+
'sqlite_libencoding',
|
3531
|
+
'sqlite_libversion',
|
3532
|
+
'sqlite_next',
|
3533
|
+
'sqlite_num_fields',
|
3534
|
+
'sqlite_num_rows',
|
3535
|
+
'sqlite_open',
|
3536
|
+
'sqlite_popen',
|
3537
|
+
'sqlite_prev',
|
3538
|
+
'sqlite_query',
|
3539
|
+
'sqlite_rewind',
|
3540
|
+
'sqlite_seek',
|
3541
|
+
'sqlite_single_query',
|
3542
|
+
'sqlite_udf_decode_binary',
|
3543
|
+
'sqlite_udf_encode_binary',
|
3544
|
+
'sqlite_unbuffered_query',
|
3545
|
+
'sqlite_valid'),
|
3546
|
+
'SSH2': ('ssh2_auth_agent',
|
3547
|
+
'ssh2_auth_hostbased_file',
|
3548
|
+
'ssh2_auth_none',
|
3549
|
+
'ssh2_auth_password',
|
3550
|
+
'ssh2_auth_pubkey_file',
|
3551
|
+
'ssh2_connect',
|
3552
|
+
'ssh2_exec',
|
3553
|
+
'ssh2_fetch_stream',
|
3554
|
+
'ssh2_fingerprint',
|
3555
|
+
'ssh2_methods_negotiated',
|
3556
|
+
'ssh2_publickey_add',
|
3557
|
+
'ssh2_publickey_init',
|
3558
|
+
'ssh2_publickey_list',
|
3559
|
+
'ssh2_publickey_remove',
|
3560
|
+
'ssh2_scp_recv',
|
3561
|
+
'ssh2_scp_send',
|
3562
|
+
'ssh2_sftp_chmod',
|
3563
|
+
'ssh2_sftp_lstat',
|
3564
|
+
'ssh2_sftp_mkdir',
|
3565
|
+
'ssh2_sftp_readlink',
|
3566
|
+
'ssh2_sftp_realpath',
|
3567
|
+
'ssh2_sftp_rename',
|
3568
|
+
'ssh2_sftp_rmdir',
|
3569
|
+
'ssh2_sftp_stat',
|
3570
|
+
'ssh2_sftp_symlink',
|
3571
|
+
'ssh2_sftp_unlink',
|
3572
|
+
'ssh2_sftp',
|
3573
|
+
'ssh2_shell',
|
3574
|
+
'ssh2_tunnel'),
|
3575
|
+
'SVN': ('svn_add',
|
3576
|
+
'svn_auth_get_parameter',
|
3577
|
+
'svn_auth_set_parameter',
|
3578
|
+
'svn_blame',
|
3579
|
+
'svn_cat',
|
3580
|
+
'svn_checkout',
|
3581
|
+
'svn_cleanup',
|
3582
|
+
'svn_client_version',
|
3583
|
+
'svn_commit',
|
3584
|
+
'svn_delete',
|
3585
|
+
'svn_diff',
|
3586
|
+
'svn_export',
|
3587
|
+
'svn_fs_abort_txn',
|
3588
|
+
'svn_fs_apply_text',
|
3589
|
+
'svn_fs_begin_txn2',
|
3590
|
+
'svn_fs_change_node_prop',
|
3591
|
+
'svn_fs_check_path',
|
3592
|
+
'svn_fs_contents_changed',
|
3593
|
+
'svn_fs_copy',
|
3594
|
+
'svn_fs_delete',
|
3595
|
+
'svn_fs_dir_entries',
|
3596
|
+
'svn_fs_file_contents',
|
3597
|
+
'svn_fs_file_length',
|
3598
|
+
'svn_fs_is_dir',
|
3599
|
+
'svn_fs_is_file',
|
3600
|
+
'svn_fs_make_dir',
|
3601
|
+
'svn_fs_make_file',
|
3602
|
+
'svn_fs_node_created_rev',
|
3603
|
+
'svn_fs_node_prop',
|
3604
|
+
'svn_fs_props_changed',
|
3605
|
+
'svn_fs_revision_prop',
|
3606
|
+
'svn_fs_revision_root',
|
3607
|
+
'svn_fs_txn_root',
|
3608
|
+
'svn_fs_youngest_rev',
|
3609
|
+
'svn_import',
|
3610
|
+
'svn_log',
|
3611
|
+
'svn_ls',
|
3612
|
+
'svn_mkdir',
|
3613
|
+
'svn_repos_create',
|
3614
|
+
'svn_repos_fs_begin_txn_for_commit',
|
3615
|
+
'svn_repos_fs_commit_txn',
|
3616
|
+
'svn_repos_fs',
|
3617
|
+
'svn_repos_hotcopy',
|
3618
|
+
'svn_repos_open',
|
3619
|
+
'svn_repos_recover',
|
3620
|
+
'svn_revert',
|
3621
|
+
'svn_status',
|
3622
|
+
'svn_update'),
|
3623
|
+
'SWF': ('swf_actiongeturl',
|
3624
|
+
'swf_actiongotoframe',
|
3625
|
+
'swf_actiongotolabel',
|
3626
|
+
'swf_actionnextframe',
|
3627
|
+
'swf_actionplay',
|
3628
|
+
'swf_actionprevframe',
|
3629
|
+
'swf_actionsettarget',
|
3630
|
+
'swf_actionstop',
|
3631
|
+
'swf_actiontogglequality',
|
3632
|
+
'swf_actionwaitforframe',
|
3633
|
+
'swf_addbuttonrecord',
|
3634
|
+
'swf_addcolor',
|
3635
|
+
'swf_closefile',
|
3636
|
+
'swf_definebitmap',
|
3637
|
+
'swf_definefont',
|
3638
|
+
'swf_defineline',
|
3639
|
+
'swf_definepoly',
|
3640
|
+
'swf_definerect',
|
3641
|
+
'swf_definetext',
|
3642
|
+
'swf_endbutton',
|
3643
|
+
'swf_enddoaction',
|
3644
|
+
'swf_endshape',
|
3645
|
+
'swf_endsymbol',
|
3646
|
+
'swf_fontsize',
|
3647
|
+
'swf_fontslant',
|
3648
|
+
'swf_fonttracking',
|
3649
|
+
'swf_getbitmapinfo',
|
3650
|
+
'swf_getfontinfo',
|
3651
|
+
'swf_getframe',
|
3652
|
+
'swf_labelframe',
|
3653
|
+
'swf_lookat',
|
3654
|
+
'swf_modifyobject',
|
3655
|
+
'swf_mulcolor',
|
3656
|
+
'swf_nextid',
|
3657
|
+
'swf_oncondition',
|
3658
|
+
'swf_openfile',
|
3659
|
+
'swf_ortho2',
|
3660
|
+
'swf_ortho',
|
3661
|
+
'swf_perspective',
|
3662
|
+
'swf_placeobject',
|
3663
|
+
'swf_polarview',
|
3664
|
+
'swf_popmatrix',
|
3665
|
+
'swf_posround',
|
3666
|
+
'swf_pushmatrix',
|
3667
|
+
'swf_removeobject',
|
3668
|
+
'swf_rotate',
|
3669
|
+
'swf_scale',
|
3670
|
+
'swf_setfont',
|
3671
|
+
'swf_setframe',
|
3672
|
+
'swf_shapearc',
|
3673
|
+
'swf_shapecurveto3',
|
3674
|
+
'swf_shapecurveto',
|
3675
|
+
'swf_shapefillbitmapclip',
|
3676
|
+
'swf_shapefillbitmaptile',
|
3677
|
+
'swf_shapefilloff',
|
3678
|
+
'swf_shapefillsolid',
|
3679
|
+
'swf_shapelinesolid',
|
3680
|
+
'swf_shapelineto',
|
3681
|
+
'swf_shapemoveto',
|
3682
|
+
'swf_showframe',
|
3683
|
+
'swf_startbutton',
|
3684
|
+
'swf_startdoaction',
|
3685
|
+
'swf_startshape',
|
3686
|
+
'swf_startsymbol',
|
3687
|
+
'swf_textwidth',
|
3688
|
+
'swf_translate',
|
3689
|
+
'swf_viewport'),
|
3690
|
+
'Semaphore': ('ftok',
|
3691
|
+
'msg_get_queue',
|
3692
|
+
'msg_queue_exists',
|
3693
|
+
'msg_receive',
|
3694
|
+
'msg_remove_queue',
|
3695
|
+
'msg_send',
|
3696
|
+
'msg_set_queue',
|
3697
|
+
'msg_stat_queue',
|
3698
|
+
'sem_acquire',
|
3699
|
+
'sem_get',
|
3700
|
+
'sem_release',
|
3701
|
+
'sem_remove',
|
3702
|
+
'shm_attach',
|
3703
|
+
'shm_detach',
|
3704
|
+
'shm_get_var',
|
3705
|
+
'shm_has_var',
|
3706
|
+
'shm_put_var',
|
3707
|
+
'shm_remove_var',
|
3708
|
+
'shm_remove'),
|
3709
|
+
'Session': ('session_cache_expire',
|
3710
|
+
'session_cache_limiter',
|
3711
|
+
'session_commit',
|
3712
|
+
'session_decode',
|
3713
|
+
'session_destroy',
|
3714
|
+
'session_encode',
|
3715
|
+
'session_get_cookie_params',
|
3716
|
+
'session_id',
|
3717
|
+
'session_is_registered',
|
3718
|
+
'session_module_name',
|
3719
|
+
'session_name',
|
3720
|
+
'session_regenerate_id',
|
3721
|
+
'session_register_shutdown',
|
3722
|
+
'session_register',
|
3723
|
+
'session_save_path',
|
3724
|
+
'session_set_cookie_params',
|
3725
|
+
'session_set_save_handler',
|
3726
|
+
'session_start',
|
3727
|
+
'session_status',
|
3728
|
+
'session_unregister',
|
3729
|
+
'session_unset',
|
3730
|
+
'session_write_close'),
|
3731
|
+
'Session PgSQL': ('session_pgsql_add_error',
|
3732
|
+
'session_pgsql_get_error',
|
3733
|
+
'session_pgsql_get_field',
|
3734
|
+
'session_pgsql_reset',
|
3735
|
+
'session_pgsql_set_field',
|
3736
|
+
'session_pgsql_status'),
|
3737
|
+
'Shared Memory': ('shmop_close',
|
3738
|
+
'shmop_delete',
|
3739
|
+
'shmop_open',
|
3740
|
+
'shmop_read',
|
3741
|
+
'shmop_size',
|
3742
|
+
'shmop_write'),
|
3743
|
+
'SimpleXML': ('simplexml_import_dom',
|
3744
|
+
'simplexml_load_file',
|
3745
|
+
'simplexml_load_string'),
|
3746
|
+
'Socket': ('socket_accept',
|
3747
|
+
'socket_bind',
|
3748
|
+
'socket_clear_error',
|
3749
|
+
'socket_close',
|
3750
|
+
'socket_cmsg_space',
|
3751
|
+
'socket_connect',
|
3752
|
+
'socket_create_listen',
|
3753
|
+
'socket_create_pair',
|
3754
|
+
'socket_create',
|
3755
|
+
'socket_get_option',
|
3756
|
+
'socket_getpeername',
|
3757
|
+
'socket_getsockname',
|
3758
|
+
'socket_import_stream',
|
3759
|
+
'socket_last_error',
|
3760
|
+
'socket_listen',
|
3761
|
+
'socket_read',
|
3762
|
+
'socket_recv',
|
3763
|
+
'socket_recvfrom',
|
3764
|
+
'socket_recvmsg',
|
3765
|
+
'socket_select',
|
3766
|
+
'socket_send',
|
3767
|
+
'socket_sendmsg',
|
3768
|
+
'socket_sendto',
|
3769
|
+
'socket_set_block',
|
3770
|
+
'socket_set_nonblock',
|
3771
|
+
'socket_set_option',
|
3772
|
+
'socket_shutdown',
|
3773
|
+
'socket_strerror',
|
3774
|
+
'socket_write'),
|
3775
|
+
'Solr': ('solr_get_version',),
|
3776
|
+
'Statistic': ('stats_absolute_deviation',
|
3777
|
+
'stats_cdf_beta',
|
3778
|
+
'stats_cdf_binomial',
|
3779
|
+
'stats_cdf_cauchy',
|
3780
|
+
'stats_cdf_chisquare',
|
3781
|
+
'stats_cdf_exponential',
|
3782
|
+
'stats_cdf_f',
|
3783
|
+
'stats_cdf_gamma',
|
3784
|
+
'stats_cdf_laplace',
|
3785
|
+
'stats_cdf_logistic',
|
3786
|
+
'stats_cdf_negative_binomial',
|
3787
|
+
'stats_cdf_noncentral_chisquare',
|
3788
|
+
'stats_cdf_noncentral_f',
|
3789
|
+
'stats_cdf_poisson',
|
3790
|
+
'stats_cdf_t',
|
3791
|
+
'stats_cdf_uniform',
|
3792
|
+
'stats_cdf_weibull',
|
3793
|
+
'stats_covariance',
|
3794
|
+
'stats_den_uniform',
|
3795
|
+
'stats_dens_beta',
|
3796
|
+
'stats_dens_cauchy',
|
3797
|
+
'stats_dens_chisquare',
|
3798
|
+
'stats_dens_exponential',
|
3799
|
+
'stats_dens_f',
|
3800
|
+
'stats_dens_gamma',
|
3801
|
+
'stats_dens_laplace',
|
3802
|
+
'stats_dens_logistic',
|
3803
|
+
'stats_dens_negative_binomial',
|
3804
|
+
'stats_dens_normal',
|
3805
|
+
'stats_dens_pmf_binomial',
|
3806
|
+
'stats_dens_pmf_hypergeometric',
|
3807
|
+
'stats_dens_pmf_poisson',
|
3808
|
+
'stats_dens_t',
|
3809
|
+
'stats_dens_weibull',
|
3810
|
+
'stats_harmonic_mean',
|
3811
|
+
'stats_kurtosis',
|
3812
|
+
'stats_rand_gen_beta',
|
3813
|
+
'stats_rand_gen_chisquare',
|
3814
|
+
'stats_rand_gen_exponential',
|
3815
|
+
'stats_rand_gen_f',
|
3816
|
+
'stats_rand_gen_funiform',
|
3817
|
+
'stats_rand_gen_gamma',
|
3818
|
+
'stats_rand_gen_ibinomial_negative',
|
3819
|
+
'stats_rand_gen_ibinomial',
|
3820
|
+
'stats_rand_gen_int',
|
3821
|
+
'stats_rand_gen_ipoisson',
|
3822
|
+
'stats_rand_gen_iuniform',
|
3823
|
+
'stats_rand_gen_noncenral_chisquare',
|
3824
|
+
'stats_rand_gen_noncentral_f',
|
3825
|
+
'stats_rand_gen_noncentral_t',
|
3826
|
+
'stats_rand_gen_normal',
|
3827
|
+
'stats_rand_gen_t',
|
3828
|
+
'stats_rand_get_seeds',
|
3829
|
+
'stats_rand_phrase_to_seeds',
|
3830
|
+
'stats_rand_ranf',
|
3831
|
+
'stats_rand_setall',
|
3832
|
+
'stats_skew',
|
3833
|
+
'stats_standard_deviation',
|
3834
|
+
'stats_stat_binomial_coef',
|
3835
|
+
'stats_stat_correlation',
|
3836
|
+
'stats_stat_gennch',
|
3837
|
+
'stats_stat_independent_t',
|
3838
|
+
'stats_stat_innerproduct',
|
3839
|
+
'stats_stat_noncentral_t',
|
3840
|
+
'stats_stat_paired_t',
|
3841
|
+
'stats_stat_percentile',
|
3842
|
+
'stats_stat_powersum',
|
3843
|
+
'stats_variance'),
|
3844
|
+
'Stomp': ('stomp_connect_error', 'stomp_version'),
|
3845
|
+
'Stream': ('set_socket_blocking',
|
3846
|
+
'stream_bucket_append',
|
3847
|
+
'stream_bucket_make_writeable',
|
3848
|
+
'stream_bucket_new',
|
3849
|
+
'stream_bucket_prepend',
|
3850
|
+
'stream_context_create',
|
3851
|
+
'stream_context_get_default',
|
3852
|
+
'stream_context_get_options',
|
3853
|
+
'stream_context_get_params',
|
3854
|
+
'stream_context_set_default',
|
3855
|
+
'stream_context_set_option',
|
3856
|
+
'stream_context_set_params',
|
3857
|
+
'stream_copy_to_stream',
|
3858
|
+
'stream_encoding',
|
3859
|
+
'stream_filter_append',
|
3860
|
+
'stream_filter_prepend',
|
3861
|
+
'stream_filter_register',
|
3862
|
+
'stream_filter_remove',
|
3863
|
+
'stream_get_contents',
|
3864
|
+
'stream_get_filters',
|
3865
|
+
'stream_get_line',
|
3866
|
+
'stream_get_meta_data',
|
3867
|
+
'stream_get_transports',
|
3868
|
+
'stream_get_wrappers',
|
3869
|
+
'stream_is_local',
|
3870
|
+
'stream_notification_callback',
|
3871
|
+
'stream_register_wrapper',
|
3872
|
+
'stream_resolve_include_path',
|
3873
|
+
'stream_select',
|
3874
|
+
'stream_set_blocking',
|
3875
|
+
'stream_set_chunk_size',
|
3876
|
+
'stream_set_read_buffer',
|
3877
|
+
'stream_set_timeout',
|
3878
|
+
'stream_set_write_buffer',
|
3879
|
+
'stream_socket_accept',
|
3880
|
+
'stream_socket_client',
|
3881
|
+
'stream_socket_enable_crypto',
|
3882
|
+
'stream_socket_get_name',
|
3883
|
+
'stream_socket_pair',
|
3884
|
+
'stream_socket_recvfrom',
|
3885
|
+
'stream_socket_sendto',
|
3886
|
+
'stream_socket_server',
|
3887
|
+
'stream_socket_shutdown',
|
3888
|
+
'stream_supports_lock',
|
3889
|
+
'stream_wrapper_register',
|
3890
|
+
'stream_wrapper_restore',
|
3891
|
+
'stream_wrapper_unregister'),
|
3892
|
+
'String': ('addcslashes',
|
3893
|
+
'addslashes',
|
3894
|
+
'bin2hex',
|
3895
|
+
'chop',
|
3896
|
+
'chr',
|
3897
|
+
'chunk_split',
|
3898
|
+
'convert_cyr_string',
|
3899
|
+
'convert_uudecode',
|
3900
|
+
'convert_uuencode',
|
3901
|
+
'count_chars',
|
3902
|
+
'crc32',
|
3903
|
+
'crypt',
|
3904
|
+
'echo',
|
3905
|
+
'explode',
|
3906
|
+
'fprintf',
|
3907
|
+
'get_html_translation_table',
|
3908
|
+
'hebrev',
|
3909
|
+
'hebrevc',
|
3910
|
+
'hex2bin',
|
3911
|
+
'html_entity_decode',
|
3912
|
+
'htmlentities',
|
3913
|
+
'htmlspecialchars_decode',
|
3914
|
+
'htmlspecialchars',
|
3915
|
+
'implode',
|
3916
|
+
'join',
|
3917
|
+
'lcfirst',
|
3918
|
+
'levenshtein',
|
3919
|
+
'localeconv',
|
3920
|
+
'ltrim',
|
3921
|
+
'md5_file',
|
3922
|
+
'md5',
|
3923
|
+
'metaphone',
|
3924
|
+
'money_format',
|
3925
|
+
'nl_langinfo',
|
3926
|
+
'nl2br',
|
3927
|
+
'number_format',
|
3928
|
+
'ord',
|
3929
|
+
'parse_str',
|
3930
|
+
'print',
|
3931
|
+
'printf',
|
3932
|
+
'quoted_printable_decode',
|
3933
|
+
'quoted_printable_encode',
|
3934
|
+
'quotemeta',
|
3935
|
+
'rtrim',
|
3936
|
+
'setlocale',
|
3937
|
+
'sha1_file',
|
3938
|
+
'sha1',
|
3939
|
+
'similar_text',
|
3940
|
+
'soundex',
|
3941
|
+
'sprintf',
|
3942
|
+
'sscanf',
|
3943
|
+
'str_getcsv',
|
3944
|
+
'str_ireplace',
|
3945
|
+
'str_pad',
|
3946
|
+
'str_repeat',
|
3947
|
+
'str_replace',
|
3948
|
+
'str_rot13',
|
3949
|
+
'str_shuffle',
|
3950
|
+
'str_split',
|
3951
|
+
'str_word_count',
|
3952
|
+
'strcasecmp',
|
3953
|
+
'strchr',
|
3954
|
+
'strcmp',
|
3955
|
+
'strcoll',
|
3956
|
+
'strcspn',
|
3957
|
+
'strip_tags',
|
3958
|
+
'stripcslashes',
|
3959
|
+
'stripos',
|
3960
|
+
'stripslashes',
|
3961
|
+
'stristr',
|
3962
|
+
'strlen',
|
3963
|
+
'strnatcasecmp',
|
3964
|
+
'strnatcmp',
|
3965
|
+
'strncasecmp',
|
3966
|
+
'strncmp',
|
3967
|
+
'strpbrk',
|
3968
|
+
'strpos',
|
3969
|
+
'strrchr',
|
3970
|
+
'strrev',
|
3971
|
+
'strripos',
|
3972
|
+
'strrpos',
|
3973
|
+
'strspn',
|
3974
|
+
'strstr',
|
3975
|
+
'strtok',
|
3976
|
+
'strtolower',
|
3977
|
+
'strtoupper',
|
3978
|
+
'strtr',
|
3979
|
+
'substr_compare',
|
3980
|
+
'substr_count',
|
3981
|
+
'substr_replace',
|
3982
|
+
'substr',
|
3983
|
+
'trim',
|
3984
|
+
'ucfirst',
|
3985
|
+
'ucwords',
|
3986
|
+
'vfprintf',
|
3987
|
+
'vprintf',
|
3988
|
+
'vsprintf',
|
3989
|
+
'wordwrap'),
|
3990
|
+
'Sybase': ('sybase_affected_rows',
|
3991
|
+
'sybase_close',
|
3992
|
+
'sybase_connect',
|
3993
|
+
'sybase_data_seek',
|
3994
|
+
'sybase_deadlock_retry_count',
|
3995
|
+
'sybase_fetch_array',
|
3996
|
+
'sybase_fetch_assoc',
|
3997
|
+
'sybase_fetch_field',
|
3998
|
+
'sybase_fetch_object',
|
3999
|
+
'sybase_fetch_row',
|
4000
|
+
'sybase_field_seek',
|
4001
|
+
'sybase_free_result',
|
4002
|
+
'sybase_get_last_message',
|
4003
|
+
'sybase_min_client_severity',
|
4004
|
+
'sybase_min_error_severity',
|
4005
|
+
'sybase_min_message_severity',
|
4006
|
+
'sybase_min_server_severity',
|
4007
|
+
'sybase_num_fields',
|
4008
|
+
'sybase_num_rows',
|
4009
|
+
'sybase_pconnect',
|
4010
|
+
'sybase_query',
|
4011
|
+
'sybase_result',
|
4012
|
+
'sybase_select_db',
|
4013
|
+
'sybase_set_message_handler',
|
4014
|
+
'sybase_unbuffered_query'),
|
4015
|
+
'TCP': ('tcpwrap_check',),
|
4016
|
+
'Taint': ('is_tainted', 'taint', 'untaint'),
|
4017
|
+
'Tidy': ('ob_tidyhandler',
|
4018
|
+
'tidy_access_count',
|
4019
|
+
'tidy_config_count',
|
4020
|
+
'tidy_error_count',
|
4021
|
+
'tidy_get_output',
|
4022
|
+
'tidy_load_config',
|
4023
|
+
'tidy_reset_config',
|
4024
|
+
'tidy_save_config',
|
4025
|
+
'tidy_set_encoding',
|
4026
|
+
'tidy_setopt',
|
4027
|
+
'tidy_warning_count'),
|
4028
|
+
'Tokenizer': ('token_get_all', 'token_name'),
|
4029
|
+
'Trader': ('trader_acos',
|
4030
|
+
'trader_ad',
|
4031
|
+
'trader_add',
|
4032
|
+
'trader_adosc',
|
4033
|
+
'trader_adx',
|
4034
|
+
'trader_adxr',
|
4035
|
+
'trader_apo',
|
4036
|
+
'trader_aroon',
|
4037
|
+
'trader_aroonosc',
|
4038
|
+
'trader_asin',
|
4039
|
+
'trader_atan',
|
4040
|
+
'trader_atr',
|
4041
|
+
'trader_avgprice',
|
4042
|
+
'trader_bbands',
|
4043
|
+
'trader_beta',
|
4044
|
+
'trader_bop',
|
4045
|
+
'trader_cci',
|
4046
|
+
'trader_cdl2crows',
|
4047
|
+
'trader_cdl3blackcrows',
|
4048
|
+
'trader_cdl3inside',
|
4049
|
+
'trader_cdl3linestrike',
|
4050
|
+
'trader_cdl3outside',
|
4051
|
+
'trader_cdl3starsinsouth',
|
4052
|
+
'trader_cdl3whitesoldiers',
|
4053
|
+
'trader_cdlabandonedbaby',
|
4054
|
+
'trader_cdladvanceblock',
|
4055
|
+
'trader_cdlbelthold',
|
4056
|
+
'trader_cdlbreakaway',
|
4057
|
+
'trader_cdlclosingmarubozu',
|
4058
|
+
'trader_cdlconcealbabyswall',
|
4059
|
+
'trader_cdlcounterattack',
|
4060
|
+
'trader_cdldarkcloudcover',
|
4061
|
+
'trader_cdldoji',
|
4062
|
+
'trader_cdldojistar',
|
4063
|
+
'trader_cdldragonflydoji',
|
4064
|
+
'trader_cdlengulfing',
|
4065
|
+
'trader_cdleveningdojistar',
|
4066
|
+
'trader_cdleveningstar',
|
4067
|
+
'trader_cdlgapsidesidewhite',
|
4068
|
+
'trader_cdlgravestonedoji',
|
4069
|
+
'trader_cdlhammer',
|
4070
|
+
'trader_cdlhangingman',
|
4071
|
+
'trader_cdlharami',
|
4072
|
+
'trader_cdlharamicross',
|
4073
|
+
'trader_cdlhighwave',
|
4074
|
+
'trader_cdlhikkake',
|
4075
|
+
'trader_cdlhikkakemod',
|
4076
|
+
'trader_cdlhomingpigeon',
|
4077
|
+
'trader_cdlidentical3crows',
|
4078
|
+
'trader_cdlinneck',
|
4079
|
+
'trader_cdlinvertedhammer',
|
4080
|
+
'trader_cdlkicking',
|
4081
|
+
'trader_cdlkickingbylength',
|
4082
|
+
'trader_cdlladderbottom',
|
4083
|
+
'trader_cdllongleggeddoji',
|
4084
|
+
'trader_cdllongline',
|
4085
|
+
'trader_cdlmarubozu',
|
4086
|
+
'trader_cdlmatchinglow',
|
4087
|
+
'trader_cdlmathold',
|
4088
|
+
'trader_cdlmorningdojistar',
|
4089
|
+
'trader_cdlmorningstar',
|
4090
|
+
'trader_cdlonneck',
|
4091
|
+
'trader_cdlpiercing',
|
4092
|
+
'trader_cdlrickshawman',
|
4093
|
+
'trader_cdlrisefall3methods',
|
4094
|
+
'trader_cdlseparatinglines',
|
4095
|
+
'trader_cdlshootingstar',
|
4096
|
+
'trader_cdlshortline',
|
4097
|
+
'trader_cdlspinningtop',
|
4098
|
+
'trader_cdlstalledpattern',
|
4099
|
+
'trader_cdlsticksandwich',
|
4100
|
+
'trader_cdltakuri',
|
4101
|
+
'trader_cdltasukigap',
|
4102
|
+
'trader_cdlthrusting',
|
4103
|
+
'trader_cdltristar',
|
4104
|
+
'trader_cdlunique3river',
|
4105
|
+
'trader_cdlupsidegap2crows',
|
4106
|
+
'trader_cdlxsidegap3methods',
|
4107
|
+
'trader_ceil',
|
4108
|
+
'trader_cmo',
|
4109
|
+
'trader_correl',
|
4110
|
+
'trader_cos',
|
4111
|
+
'trader_cosh',
|
4112
|
+
'trader_dema',
|
4113
|
+
'trader_div',
|
4114
|
+
'trader_dx',
|
4115
|
+
'trader_ema',
|
4116
|
+
'trader_errno',
|
4117
|
+
'trader_exp',
|
4118
|
+
'trader_floor',
|
4119
|
+
'trader_get_compat',
|
4120
|
+
'trader_get_unstable_period',
|
4121
|
+
'trader_ht_dcperiod',
|
4122
|
+
'trader_ht_dcphase',
|
4123
|
+
'trader_ht_phasor',
|
4124
|
+
'trader_ht_sine',
|
4125
|
+
'trader_ht_trendline',
|
4126
|
+
'trader_ht_trendmode',
|
4127
|
+
'trader_kama',
|
4128
|
+
'trader_linearreg_angle',
|
4129
|
+
'trader_linearreg_intercept',
|
4130
|
+
'trader_linearreg_slope',
|
4131
|
+
'trader_linearreg',
|
4132
|
+
'trader_ln',
|
4133
|
+
'trader_log10',
|
4134
|
+
'trader_ma',
|
4135
|
+
'trader_macd',
|
4136
|
+
'trader_macdext',
|
4137
|
+
'trader_macdfix',
|
4138
|
+
'trader_mama',
|
4139
|
+
'trader_mavp',
|
4140
|
+
'trader_max',
|
4141
|
+
'trader_maxindex',
|
4142
|
+
'trader_medprice',
|
4143
|
+
'trader_mfi',
|
4144
|
+
'trader_midpoint',
|
4145
|
+
'trader_midprice',
|
4146
|
+
'trader_min',
|
4147
|
+
'trader_minindex',
|
4148
|
+
'trader_minmax',
|
4149
|
+
'trader_minmaxindex',
|
4150
|
+
'trader_minus_di',
|
4151
|
+
'trader_minus_dm',
|
4152
|
+
'trader_mom',
|
4153
|
+
'trader_mult',
|
4154
|
+
'trader_natr',
|
4155
|
+
'trader_obv',
|
4156
|
+
'trader_plus_di',
|
4157
|
+
'trader_plus_dm',
|
4158
|
+
'trader_ppo',
|
4159
|
+
'trader_roc',
|
4160
|
+
'trader_rocp',
|
4161
|
+
'trader_rocr100',
|
4162
|
+
'trader_rocr',
|
4163
|
+
'trader_rsi',
|
4164
|
+
'trader_sar',
|
4165
|
+
'trader_sarext',
|
4166
|
+
'trader_set_compat',
|
4167
|
+
'trader_set_unstable_period',
|
4168
|
+
'trader_sin',
|
4169
|
+
'trader_sinh',
|
4170
|
+
'trader_sma',
|
4171
|
+
'trader_sqrt',
|
4172
|
+
'trader_stddev',
|
4173
|
+
'trader_stoch',
|
4174
|
+
'trader_stochf',
|
4175
|
+
'trader_stochrsi',
|
4176
|
+
'trader_sub',
|
4177
|
+
'trader_sum',
|
4178
|
+
'trader_t3',
|
4179
|
+
'trader_tan',
|
4180
|
+
'trader_tanh',
|
4181
|
+
'trader_tema',
|
4182
|
+
'trader_trange',
|
4183
|
+
'trader_trima',
|
4184
|
+
'trader_trix',
|
4185
|
+
'trader_tsf',
|
4186
|
+
'trader_typprice',
|
4187
|
+
'trader_ultosc',
|
4188
|
+
'trader_var',
|
4189
|
+
'trader_wclprice',
|
4190
|
+
'trader_willr',
|
4191
|
+
'trader_wma'),
|
4192
|
+
'URL': ('base64_decode',
|
4193
|
+
'base64_encode',
|
4194
|
+
'get_headers',
|
4195
|
+
'get_meta_tags',
|
4196
|
+
'http_build_query',
|
4197
|
+
'parse_url',
|
4198
|
+
'rawurldecode',
|
4199
|
+
'rawurlencode',
|
4200
|
+
'urldecode',
|
4201
|
+
'urlencode'),
|
4202
|
+
'Uopz': ('uopz_backup',
|
4203
|
+
'uopz_compose',
|
4204
|
+
'uopz_copy',
|
4205
|
+
'uopz_delete',
|
4206
|
+
'uopz_extend',
|
4207
|
+
'uopz_flags',
|
4208
|
+
'uopz_function',
|
4209
|
+
'uopz_implement',
|
4210
|
+
'uopz_overload',
|
4211
|
+
'uopz_redefine',
|
4212
|
+
'uopz_rename',
|
4213
|
+
'uopz_restore',
|
4214
|
+
'uopz_undefine'),
|
4215
|
+
'Variable handling': ('boolval',
|
4216
|
+
'debug_zval_dump',
|
4217
|
+
'doubleval',
|
4218
|
+
'empty',
|
4219
|
+
'floatval',
|
4220
|
+
'get_defined_vars',
|
4221
|
+
'get_resource_type',
|
4222
|
+
'gettype',
|
4223
|
+
'import_request_variables',
|
4224
|
+
'intval',
|
4225
|
+
'is_array',
|
4226
|
+
'is_bool',
|
4227
|
+
'is_callable',
|
4228
|
+
'is_double',
|
4229
|
+
'is_float',
|
4230
|
+
'is_int',
|
4231
|
+
'is_integer',
|
4232
|
+
'is_long',
|
4233
|
+
'is_null',
|
4234
|
+
'is_numeric',
|
4235
|
+
'is_object',
|
4236
|
+
'is_real',
|
4237
|
+
'is_resource',
|
4238
|
+
'is_scalar',
|
4239
|
+
'is_string',
|
4240
|
+
'isset',
|
4241
|
+
'print_r',
|
4242
|
+
'serialize',
|
4243
|
+
'settype',
|
4244
|
+
'strval',
|
4245
|
+
'unserialize',
|
4246
|
+
'unset',
|
4247
|
+
'var_dump',
|
4248
|
+
'var_export'),
|
4249
|
+
'W32api': ('w32api_deftype',
|
4250
|
+
'w32api_init_dtype',
|
4251
|
+
'w32api_invoke_function',
|
4252
|
+
'w32api_register_function',
|
4253
|
+
'w32api_set_call_method'),
|
4254
|
+
'WDDX': ('wddx_add_vars',
|
4255
|
+
'wddx_deserialize',
|
4256
|
+
'wddx_packet_end',
|
4257
|
+
'wddx_packet_start',
|
4258
|
+
'wddx_serialize_value',
|
4259
|
+
'wddx_serialize_vars'),
|
4260
|
+
'WinCache': ('wincache_fcache_fileinfo',
|
4261
|
+
'wincache_fcache_meminfo',
|
4262
|
+
'wincache_lock',
|
4263
|
+
'wincache_ocache_fileinfo',
|
4264
|
+
'wincache_ocache_meminfo',
|
4265
|
+
'wincache_refresh_if_changed',
|
4266
|
+
'wincache_rplist_fileinfo',
|
4267
|
+
'wincache_rplist_meminfo',
|
4268
|
+
'wincache_scache_info',
|
4269
|
+
'wincache_scache_meminfo',
|
4270
|
+
'wincache_ucache_add',
|
4271
|
+
'wincache_ucache_cas',
|
4272
|
+
'wincache_ucache_clear',
|
4273
|
+
'wincache_ucache_dec',
|
4274
|
+
'wincache_ucache_delete',
|
4275
|
+
'wincache_ucache_exists',
|
4276
|
+
'wincache_ucache_get',
|
4277
|
+
'wincache_ucache_inc',
|
4278
|
+
'wincache_ucache_info',
|
4279
|
+
'wincache_ucache_meminfo',
|
4280
|
+
'wincache_ucache_set',
|
4281
|
+
'wincache_unlock'),
|
4282
|
+
'XML Parser': ('utf8_decode',
|
4283
|
+
'utf8_encode',
|
4284
|
+
'xml_error_string',
|
4285
|
+
'xml_get_current_byte_index',
|
4286
|
+
'xml_get_current_column_number',
|
4287
|
+
'xml_get_current_line_number',
|
4288
|
+
'xml_get_error_code',
|
4289
|
+
'xml_parse_into_struct',
|
4290
|
+
'xml_parse',
|
4291
|
+
'xml_parser_create_ns',
|
4292
|
+
'xml_parser_create',
|
4293
|
+
'xml_parser_free',
|
4294
|
+
'xml_parser_get_option',
|
4295
|
+
'xml_parser_set_option',
|
4296
|
+
'xml_set_character_data_handler',
|
4297
|
+
'xml_set_default_handler',
|
4298
|
+
'xml_set_element_handler',
|
4299
|
+
'xml_set_end_namespace_decl_handler',
|
4300
|
+
'xml_set_external_entity_ref_handler',
|
4301
|
+
'xml_set_notation_decl_handler',
|
4302
|
+
'xml_set_object',
|
4303
|
+
'xml_set_processing_instruction_handler',
|
4304
|
+
'xml_set_start_namespace_decl_handler',
|
4305
|
+
'xml_set_unparsed_entity_decl_handler'),
|
4306
|
+
'XML-RPC': ('xmlrpc_decode_request',
|
4307
|
+
'xmlrpc_decode',
|
4308
|
+
'xmlrpc_encode_request',
|
4309
|
+
'xmlrpc_encode',
|
4310
|
+
'xmlrpc_get_type',
|
4311
|
+
'xmlrpc_is_fault',
|
4312
|
+
'xmlrpc_parse_method_descriptions',
|
4313
|
+
'xmlrpc_server_add_introspection_data',
|
4314
|
+
'xmlrpc_server_call_method',
|
4315
|
+
'xmlrpc_server_create',
|
4316
|
+
'xmlrpc_server_destroy',
|
4317
|
+
'xmlrpc_server_register_introspection_callback',
|
4318
|
+
'xmlrpc_server_register_method',
|
4319
|
+
'xmlrpc_set_type'),
|
4320
|
+
'XSLT (PHP 4)': ('xslt_backend_info',
|
4321
|
+
'xslt_backend_name',
|
4322
|
+
'xslt_backend_version',
|
4323
|
+
'xslt_create',
|
4324
|
+
'xslt_errno',
|
4325
|
+
'xslt_error',
|
4326
|
+
'xslt_free',
|
4327
|
+
'xslt_getopt',
|
4328
|
+
'xslt_process',
|
4329
|
+
'xslt_set_base',
|
4330
|
+
'xslt_set_encoding',
|
4331
|
+
'xslt_set_error_handler',
|
4332
|
+
'xslt_set_log',
|
4333
|
+
'xslt_set_object',
|
4334
|
+
'xslt_set_sax_handler',
|
4335
|
+
'xslt_set_sax_handlers',
|
4336
|
+
'xslt_set_scheme_handler',
|
4337
|
+
'xslt_set_scheme_handlers',
|
4338
|
+
'xslt_setopt'),
|
4339
|
+
'Xhprof': ('xhprof_disable',
|
4340
|
+
'xhprof_enable',
|
4341
|
+
'xhprof_sample_disable',
|
4342
|
+
'xhprof_sample_enable'),
|
4343
|
+
'YAZ': ('yaz_addinfo',
|
4344
|
+
'yaz_ccl_conf',
|
4345
|
+
'yaz_ccl_parse',
|
4346
|
+
'yaz_close',
|
4347
|
+
'yaz_connect',
|
4348
|
+
'yaz_database',
|
4349
|
+
'yaz_element',
|
4350
|
+
'yaz_errno',
|
4351
|
+
'yaz_error',
|
4352
|
+
'yaz_es_result',
|
4353
|
+
'yaz_es',
|
4354
|
+
'yaz_get_option',
|
4355
|
+
'yaz_hits',
|
4356
|
+
'yaz_itemorder',
|
4357
|
+
'yaz_present',
|
4358
|
+
'yaz_range',
|
4359
|
+
'yaz_record',
|
4360
|
+
'yaz_scan_result',
|
4361
|
+
'yaz_scan',
|
4362
|
+
'yaz_schema',
|
4363
|
+
'yaz_search',
|
4364
|
+
'yaz_set_option',
|
4365
|
+
'yaz_sort',
|
4366
|
+
'yaz_syntax',
|
4367
|
+
'yaz_wait'),
|
4368
|
+
'YP/NIS': ('yp_all',
|
4369
|
+
'yp_cat',
|
4370
|
+
'yp_err_string',
|
4371
|
+
'yp_errno',
|
4372
|
+
'yp_first',
|
4373
|
+
'yp_get_default_domain',
|
4374
|
+
'yp_master',
|
4375
|
+
'yp_match',
|
4376
|
+
'yp_next',
|
4377
|
+
'yp_order'),
|
4378
|
+
'Yaml': ('yaml_emit_file',
|
4379
|
+
'yaml_emit',
|
4380
|
+
'yaml_parse_file',
|
4381
|
+
'yaml_parse_url',
|
4382
|
+
'yaml_parse'),
|
4383
|
+
'Zip': ('zip_close',
|
4384
|
+
'zip_entry_close',
|
4385
|
+
'zip_entry_compressedsize',
|
4386
|
+
'zip_entry_compressionmethod',
|
4387
|
+
'zip_entry_filesize',
|
4388
|
+
'zip_entry_name',
|
4389
|
+
'zip_entry_open',
|
4390
|
+
'zip_entry_read',
|
4391
|
+
'zip_open',
|
4392
|
+
'zip_read'),
|
4393
|
+
'Zlib': ('gzclose',
|
4394
|
+
'gzcompress',
|
4395
|
+
'gzdecode',
|
4396
|
+
'gzdeflate',
|
4397
|
+
'gzencode',
|
4398
|
+
'gzeof',
|
4399
|
+
'gzfile',
|
4400
|
+
'gzgetc',
|
4401
|
+
'gzgets',
|
4402
|
+
'gzgetss',
|
4403
|
+
'gzinflate',
|
4404
|
+
'gzopen',
|
4405
|
+
'gzpassthru',
|
4406
|
+
'gzputs',
|
4407
|
+
'gzread',
|
4408
|
+
'gzrewind',
|
4409
|
+
'gzseek',
|
4410
|
+
'gztell',
|
4411
|
+
'gzuncompress',
|
4412
|
+
'gzwrite',
|
4413
|
+
'readgzfile',
|
4414
|
+
'zlib_decode',
|
4415
|
+
'zlib_encode',
|
4416
|
+
'zlib_get_coding_type'),
|
4417
|
+
'bcompiler': ('bcompiler_load_exe',
|
4418
|
+
'bcompiler_load',
|
4419
|
+
'bcompiler_parse_class',
|
4420
|
+
'bcompiler_read',
|
4421
|
+
'bcompiler_write_class',
|
4422
|
+
'bcompiler_write_constant',
|
4423
|
+
'bcompiler_write_exe_footer',
|
4424
|
+
'bcompiler_write_file',
|
4425
|
+
'bcompiler_write_footer',
|
4426
|
+
'bcompiler_write_function',
|
4427
|
+
'bcompiler_write_functions_from_file',
|
4428
|
+
'bcompiler_write_header',
|
4429
|
+
'bcompiler_write_included_filename'),
|
4430
|
+
'cURL': ('curl_close',
|
4431
|
+
'curl_copy_handle',
|
4432
|
+
'curl_errno',
|
4433
|
+
'curl_error',
|
4434
|
+
'curl_escape',
|
4435
|
+
'curl_exec',
|
4436
|
+
'curl_file_create',
|
4437
|
+
'curl_getinfo',
|
4438
|
+
'curl_init',
|
4439
|
+
'curl_multi_add_handle',
|
4440
|
+
'curl_multi_close',
|
4441
|
+
'curl_multi_exec',
|
4442
|
+
'curl_multi_getcontent',
|
4443
|
+
'curl_multi_info_read',
|
4444
|
+
'curl_multi_init',
|
4445
|
+
'curl_multi_remove_handle',
|
4446
|
+
'curl_multi_select',
|
4447
|
+
'curl_multi_setopt',
|
4448
|
+
'curl_multi_strerror',
|
4449
|
+
'curl_pause',
|
4450
|
+
'curl_reset',
|
4451
|
+
'curl_setopt_array',
|
4452
|
+
'curl_setopt',
|
4453
|
+
'curl_share_close',
|
4454
|
+
'curl_share_init',
|
4455
|
+
'curl_share_setopt',
|
4456
|
+
'curl_strerror',
|
4457
|
+
'curl_unescape',
|
4458
|
+
'curl_version'),
|
4459
|
+
'chdb': ('chdb_create',),
|
4460
|
+
'dBase': ('dbase_add_record',
|
4461
|
+
'dbase_close',
|
4462
|
+
'dbase_create',
|
4463
|
+
'dbase_delete_record',
|
4464
|
+
'dbase_get_header_info',
|
4465
|
+
'dbase_get_record_with_names',
|
4466
|
+
'dbase_get_record',
|
4467
|
+
'dbase_numfields',
|
4468
|
+
'dbase_numrecords',
|
4469
|
+
'dbase_open',
|
4470
|
+
'dbase_pack',
|
4471
|
+
'dbase_replace_record'),
|
4472
|
+
'dbx': ('dbx_close',
|
4473
|
+
'dbx_compare',
|
4474
|
+
'dbx_connect',
|
4475
|
+
'dbx_error',
|
4476
|
+
'dbx_escape_string',
|
4477
|
+
'dbx_fetch_row',
|
4478
|
+
'dbx_query',
|
4479
|
+
'dbx_sort'),
|
4480
|
+
'filePro': ('filepro_fieldcount',
|
4481
|
+
'filepro_fieldname',
|
4482
|
+
'filepro_fieldtype',
|
4483
|
+
'filepro_fieldwidth',
|
4484
|
+
'filepro_retrieve',
|
4485
|
+
'filepro_rowcount',
|
4486
|
+
'filepro'),
|
4487
|
+
'iconv': ('iconv_get_encoding',
|
4488
|
+
'iconv_mime_decode_headers',
|
4489
|
+
'iconv_mime_decode',
|
4490
|
+
'iconv_mime_encode',
|
4491
|
+
'iconv_set_encoding',
|
4492
|
+
'iconv_strlen',
|
4493
|
+
'iconv_strpos',
|
4494
|
+
'iconv_strrpos',
|
4495
|
+
'iconv_substr',
|
4496
|
+
'iconv',
|
4497
|
+
'ob_iconv_handler'),
|
4498
|
+
'inclued': ('inclued_get_data',),
|
4499
|
+
'intl': ('intl_error_name',
|
4500
|
+
'intl_get_error_code',
|
4501
|
+
'intl_get_error_message',
|
4502
|
+
'intl_is_failure'),
|
4503
|
+
'libxml': ('libxml_clear_errors',
|
4504
|
+
'libxml_disable_entity_loader',
|
4505
|
+
'libxml_get_errors',
|
4506
|
+
'libxml_get_last_error',
|
4507
|
+
'libxml_set_external_entity_loader',
|
4508
|
+
'libxml_set_streams_context',
|
4509
|
+
'libxml_use_internal_errors'),
|
4510
|
+
'mSQL': ('msql_affected_rows',
|
4511
|
+
'msql_close',
|
4512
|
+
'msql_connect',
|
4513
|
+
'msql_create_db',
|
4514
|
+
'msql_createdb',
|
4515
|
+
'msql_data_seek',
|
4516
|
+
'msql_db_query',
|
4517
|
+
'msql_dbname',
|
4518
|
+
'msql_drop_db',
|
4519
|
+
'msql_error',
|
4520
|
+
'msql_fetch_array',
|
4521
|
+
'msql_fetch_field',
|
4522
|
+
'msql_fetch_object',
|
4523
|
+
'msql_fetch_row',
|
4524
|
+
'msql_field_flags',
|
4525
|
+
'msql_field_len',
|
4526
|
+
'msql_field_name',
|
4527
|
+
'msql_field_seek',
|
4528
|
+
'msql_field_table',
|
4529
|
+
'msql_field_type',
|
4530
|
+
'msql_fieldflags',
|
4531
|
+
'msql_fieldlen',
|
4532
|
+
'msql_fieldname',
|
4533
|
+
'msql_fieldtable',
|
4534
|
+
'msql_fieldtype',
|
4535
|
+
'msql_free_result',
|
4536
|
+
'msql_list_dbs',
|
4537
|
+
'msql_list_fields',
|
4538
|
+
'msql_list_tables',
|
4539
|
+
'msql_num_fields',
|
4540
|
+
'msql_num_rows',
|
4541
|
+
'msql_numfields',
|
4542
|
+
'msql_numrows',
|
4543
|
+
'msql_pconnect',
|
4544
|
+
'msql_query',
|
4545
|
+
'msql_regcase',
|
4546
|
+
'msql_result',
|
4547
|
+
'msql_select_db',
|
4548
|
+
'msql_tablename',
|
4549
|
+
'msql'),
|
4550
|
+
'mnoGoSearch': ('udm_add_search_limit',
|
4551
|
+
'udm_alloc_agent_array',
|
4552
|
+
'udm_alloc_agent',
|
4553
|
+
'udm_api_version',
|
4554
|
+
'udm_cat_list',
|
4555
|
+
'udm_cat_path',
|
4556
|
+
'udm_check_charset',
|
4557
|
+
'udm_check_stored',
|
4558
|
+
'udm_clear_search_limits',
|
4559
|
+
'udm_close_stored',
|
4560
|
+
'udm_crc32',
|
4561
|
+
'udm_errno',
|
4562
|
+
'udm_error',
|
4563
|
+
'udm_find',
|
4564
|
+
'udm_free_agent',
|
4565
|
+
'udm_free_ispell_data',
|
4566
|
+
'udm_free_res',
|
4567
|
+
'udm_get_doc_count',
|
4568
|
+
'udm_get_res_field',
|
4569
|
+
'udm_get_res_param',
|
4570
|
+
'udm_hash32',
|
4571
|
+
'udm_load_ispell_data',
|
4572
|
+
'udm_open_stored',
|
4573
|
+
'udm_set_agent_param'),
|
4574
|
+
'mqseries': ('mqseries_back',
|
4575
|
+
'mqseries_begin',
|
4576
|
+
'mqseries_close',
|
4577
|
+
'mqseries_cmit',
|
4578
|
+
'mqseries_conn',
|
4579
|
+
'mqseries_connx',
|
4580
|
+
'mqseries_disc',
|
4581
|
+
'mqseries_get',
|
4582
|
+
'mqseries_inq',
|
4583
|
+
'mqseries_open',
|
4584
|
+
'mqseries_put1',
|
4585
|
+
'mqseries_put',
|
4586
|
+
'mqseries_set',
|
4587
|
+
'mqseries_strerror'),
|
4588
|
+
'mysqlnd_qc': ('mysqlnd_qc_clear_cache',
|
4589
|
+
'mysqlnd_qc_get_available_handlers',
|
4590
|
+
'mysqlnd_qc_get_cache_info',
|
4591
|
+
'mysqlnd_qc_get_core_stats',
|
4592
|
+
'mysqlnd_qc_get_normalized_query_trace_log',
|
4593
|
+
'mysqlnd_qc_get_query_trace_log',
|
4594
|
+
'mysqlnd_qc_set_cache_condition',
|
4595
|
+
'mysqlnd_qc_set_is_select',
|
4596
|
+
'mysqlnd_qc_set_storage_handler',
|
4597
|
+
'mysqlnd_qc_set_user_handlers'),
|
4598
|
+
'qtdom': ('qdom_error', 'qdom_tree'),
|
4599
|
+
'runkit': ('runkit_class_adopt',
|
4600
|
+
'runkit_class_emancipate',
|
4601
|
+
'runkit_constant_add',
|
4602
|
+
'runkit_constant_redefine',
|
4603
|
+
'runkit_constant_remove',
|
4604
|
+
'runkit_function_add',
|
4605
|
+
'runkit_function_copy',
|
4606
|
+
'runkit_function_redefine',
|
4607
|
+
'runkit_function_remove',
|
4608
|
+
'runkit_function_rename',
|
4609
|
+
'runkit_import',
|
4610
|
+
'runkit_lint_file',
|
4611
|
+
'runkit_lint',
|
4612
|
+
'runkit_method_add',
|
4613
|
+
'runkit_method_copy',
|
4614
|
+
'runkit_method_redefine',
|
4615
|
+
'runkit_method_remove',
|
4616
|
+
'runkit_method_rename',
|
4617
|
+
'runkit_return_value_used',
|
4618
|
+
'runkit_sandbox_output_handler',
|
4619
|
+
'runkit_superglobals'),
|
4620
|
+
'ssdeep': ('ssdeep_fuzzy_compare',
|
4621
|
+
'ssdeep_fuzzy_hash_filename',
|
4622
|
+
'ssdeep_fuzzy_hash'),
|
4623
|
+
'vpopmail': ('vpopmail_add_alias_domain_ex',
|
4624
|
+
'vpopmail_add_alias_domain',
|
4625
|
+
'vpopmail_add_domain_ex',
|
4626
|
+
'vpopmail_add_domain',
|
4627
|
+
'vpopmail_add_user',
|
4628
|
+
'vpopmail_alias_add',
|
4629
|
+
'vpopmail_alias_del_domain',
|
4630
|
+
'vpopmail_alias_del',
|
4631
|
+
'vpopmail_alias_get_all',
|
4632
|
+
'vpopmail_alias_get',
|
4633
|
+
'vpopmail_auth_user',
|
4634
|
+
'vpopmail_del_domain_ex',
|
4635
|
+
'vpopmail_del_domain',
|
4636
|
+
'vpopmail_del_user',
|
4637
|
+
'vpopmail_error',
|
4638
|
+
'vpopmail_passwd',
|
4639
|
+
'vpopmail_set_user_quota'),
|
4640
|
+
'win32ps': ('win32_ps_list_procs', 'win32_ps_stat_mem', 'win32_ps_stat_proc'),
|
4641
|
+
'win32service': ('win32_continue_service',
|
4642
|
+
'win32_create_service',
|
4643
|
+
'win32_delete_service',
|
4644
|
+
'win32_get_last_control_message',
|
4645
|
+
'win32_pause_service',
|
4646
|
+
'win32_query_service_status',
|
4647
|
+
'win32_set_service_status',
|
4648
|
+
'win32_start_service_ctrl_dispatcher',
|
4649
|
+
'win32_start_service',
|
4650
|
+
'win32_stop_service'),
|
4651
|
+
'xattr': ('xattr_get',
|
4652
|
+
'xattr_list',
|
4653
|
+
'xattr_remove',
|
4654
|
+
'xattr_set',
|
4655
|
+
'xattr_supported'),
|
4656
|
+
'xdiff': ('xdiff_file_bdiff_size',
|
4657
|
+
'xdiff_file_bdiff',
|
4658
|
+
'xdiff_file_bpatch',
|
4659
|
+
'xdiff_file_diff_binary',
|
4660
|
+
'xdiff_file_diff',
|
4661
|
+
'xdiff_file_merge3',
|
4662
|
+
'xdiff_file_patch_binary',
|
4663
|
+
'xdiff_file_patch',
|
4664
|
+
'xdiff_file_rabdiff',
|
4665
|
+
'xdiff_string_bdiff_size',
|
4666
|
+
'xdiff_string_bdiff',
|
4667
|
+
'xdiff_string_bpatch',
|
4668
|
+
'xdiff_string_diff_binary',
|
4669
|
+
'xdiff_string_diff',
|
4670
|
+
'xdiff_string_merge3',
|
4671
|
+
'xdiff_string_patch_binary',
|
4672
|
+
'xdiff_string_patch',
|
4673
|
+
'xdiff_string_rabdiff')}
|
4674
|
+
|
4675
|
+
|
4676
|
+
if __name__ == '__main__': # pragma: no cover
|
4677
|
+
import glob
|
4678
|
+
import os
|
4679
|
+
import pprint
|
4680
|
+
import re
|
4681
|
+
import shutil
|
4682
|
+
import tarfile
|
4683
|
+
try:
|
4684
|
+
from urllib import urlretrieve
|
4685
|
+
except ImportError:
|
4686
|
+
from urllib.request import urlretrieve
|
4687
|
+
|
4688
|
+
PHP_MANUAL_URL = 'http://us3.php.net/distributions/manual/php_manual_en.tar.gz'
|
4689
|
+
PHP_MANUAL_DIR = './php-chunked-xhtml/'
|
4690
|
+
PHP_REFERENCE_GLOB = 'ref.*'
|
4691
|
+
PHP_FUNCTION_RE = '<a href="function\..*?\.html">(.*?)</a>'
|
4692
|
+
PHP_MODULE_RE = '<title>(.*?) Functions</title>'
|
4693
|
+
|
4694
|
+
def get_php_functions():
|
4695
|
+
function_re = re.compile(PHP_FUNCTION_RE)
|
4696
|
+
module_re = re.compile(PHP_MODULE_RE)
|
4697
|
+
modules = {}
|
4698
|
+
|
4699
|
+
for file in get_php_references():
|
4700
|
+
module = ''
|
4701
|
+
for line in open(file):
|
4702
|
+
if not module:
|
4703
|
+
search = module_re.search(line)
|
4704
|
+
if search:
|
4705
|
+
module = search.group(1)
|
4706
|
+
modules[module] = []
|
4707
|
+
|
4708
|
+
elif 'href="function.' in line:
|
4709
|
+
for match in function_re.finditer(line):
|
4710
|
+
fn = match.group(1)
|
4711
|
+
if '->' not in fn and '::' not in fn and fn not in modules[module]:
|
4712
|
+
modules[module].append(fn)
|
4713
|
+
|
4714
|
+
if module:
|
4715
|
+
# These are dummy manual pages, not actual functions
|
4716
|
+
if module == 'PHP Options/Info':
|
4717
|
+
modules[module].remove('main')
|
4718
|
+
|
4719
|
+
if module == 'Filesystem':
|
4720
|
+
modules[module].remove('delete')
|
4721
|
+
|
4722
|
+
if not modules[module]:
|
4723
|
+
del modules[module]
|
4724
|
+
|
4725
|
+
return modules
|
4726
|
+
|
4727
|
+
def get_php_references():
|
4728
|
+
download = urlretrieve(PHP_MANUAL_URL)
|
4729
|
+
tar = tarfile.open(download[0])
|
4730
|
+
tar.extractall()
|
4731
|
+
tar.close()
|
4732
|
+
for file in glob.glob("%s%s" % (PHP_MANUAL_DIR, PHP_REFERENCE_GLOB)):
|
4733
|
+
yield file
|
4734
|
+
os.remove(download[0])
|
4735
|
+
|
4736
|
+
def regenerate(filename, modules):
|
4737
|
+
with open(filename) as fp:
|
4738
|
+
content = fp.read()
|
4739
|
+
|
4740
|
+
header = content[:content.find('MODULES = {')]
|
4741
|
+
footer = content[content.find("if __name__ == '__main__':"):]
|
4742
|
+
|
4743
|
+
with open(filename, 'w') as fp:
|
4744
|
+
fp.write(header)
|
4745
|
+
fp.write('MODULES = %s\n\n' % pprint.pformat(modules))
|
4746
|
+
fp.write(footer)
|
4747
|
+
|
4748
|
+
def run():
|
4749
|
+
print('>> Downloading Function Index')
|
4750
|
+
modules = get_php_functions()
|
4751
|
+
total = sum(len(v) for v in modules.values())
|
4752
|
+
print('%d functions found' % total)
|
4753
|
+
regenerate(__file__, modules)
|
4754
|
+
shutil.rmtree(PHP_MANUAL_DIR)
|
4755
|
+
|
4756
|
+
run()
|