Home
last modified time | relevance | path

Searched refs:PROTO_PATH (Results 1 – 11 of 11) sorted by relevance

/external/autotest/client/site_tests/policy_NativePrintersBulkAccessMode/src/
DMakefile10 PROTO_PATH = $(SYSROOT)/usr/share/protofiles macro
11 PROTO_DEFS = $(PROTO_PATH)/chrome_device_policy.proto \
12 $(PROTO_PATH)/device_management_backend.proto \
13 $(PROTO_PATH)/chrome_extension_policy.proto \
14 $(PROTO_PATH)/cloud_policy.proto
23 protoc --proto_path=$(PROTO_PATH) --python_out=$(OUT_DIR) $(PROTO_DEFS)
/external/autotest/client/site_tests/platform_MetricsUploader/src/
DMakefile10 PROTO_PATH = $(SYSROOT)/usr/include/metrics/proto macro
11 PROTO_DEFS = $(PROTO_PATH)/*.proto
12 PROTO_BINDINGS = $(PROTO_DEFS:$PROTO_PATH%.proto=$OUT_DIR%_pb2.py)
17 protoc --proto_path=$(PROTO_PATH) --python_out=$(OUT_DIR) $(PROTO_DEFS)
/external/autotest/client/site_tests/enterprise_SmbProviderDaemon/src/
DMakefile10 PROTO_PATH = $(SYSROOT)/usr/include/chromeos/dbus/smbprovider macro
11 PROTO_DEFS = $(PROTO_PATH)/directory_entry.proto
17 protoc --proto_path=$(PROTO_PATH) --python_out=$(OUT_DIR) $(PROTO_DEFS)
/external/grpc-grpc/examples/node/dynamic_codegen/
Dgreeter_server.js19 var PROTO_PATH = __dirname + '/../../protos/helloworld.proto'; variable
24 PROTO_PATH,
Dgreeter_client.js19 var PROTO_PATH = __dirname + '/../../protos/helloworld.proto'; variable
24 PROTO_PATH,
/external/autotest/server/hosts/drone_api_client/
Dbuildprotos.py8 PROTO_PATH = 'src/config/proto/chromiumos/config/api/test/tls/' variable
33 return "{}{}{}".format(UP * get_current_depth(), PROTO_PATH, PROTO_NAME)
/external/protobuf/examples/
DMakefile28 protoc $$PROTO_PATH --cpp_out=. --java_out=. --python_out=. addressbook.proto
33 protoc $$PROTO_PATH --go_out=tutorial addressbook.proto
/external/grpc-grpc/examples/node/dynamic_codegen/route_guide/
Droute_guide_client.js19 var PROTO_PATH = __dirname + '/../../../protos/route_guide.proto'; variable
29 PROTO_PATH,
Droute_guide_server.js19 var PROTO_PATH = __dirname + '/../../../protos/route_guide.proto'; variable
28 PROTO_PATH,
/external/protobuf/src/google/protobuf/compiler/
Dcommand_line_interface_unittest.cc2240 enum EncodeDecodeTestMode { PROTO_PATH, DESCRIPTOR_SET_IN }; enumerator
2289 case PROTO_PATH: in Run()
2437 testing::Values(PROTO_PATH, DESCRIPTOR_SET_IN));
/external/protobuf/
Dtests.sh165 cd examples && PROTO_PATH="-I../src -I." make gotest && cd ..